일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- writeup
- Incognito
- Forensics
- HackCTF
- 수학
- misc
- Text
- wargame
- Web Hacking
- 써니나타스
- 문자열
- C
- Web
- Database
- SuNiNaTas
- 정렬
- CTF
- N0Named
- php
- 그리디 알고리즘
- cryptography
- 인코그니토
- Network
- 백준
- MySQL
- Digital Forensics
- 사칙연산
- Python
- xcz.kr
- 구현
- Today
- Total
목록Programming (336)
보안을 그리다, 훈이
[Baekjoon/Python3] 1037번 약수 www.acmicpc.net/problem/1037 1037번: 약수 첫째 줄에 N의 진짜 약수의 개수가 주어진다. 이 개수는 50보다 작거나 같은 자연수이다. 둘째 줄에는 N의 진짜 약수가 주어진다. 1,000,000보다 작거나 같고, 2보다 크거나 같은 자연수이고, 중복되 www.acmicpc.net n = int(input()) flist = list(map(int, input().split())) print(max(flist) * min(flist))
[Baekjoon/Python3] 1032번 명령 프롬프트 www.acmicpc.net/problem/1032 1032번: 명령 프롬프트 첫째 줄에 파일 이름의 개수 N이 주어진다. 둘째 줄부터 N개의 줄에는 파일 이름이 주어진다. N은 50보다 작거나 같은 자연수이고 파일 이름의 길이는 모두 같고 길이는 최대 50이다. 파일이름은 www.acmicpc.net n = int(input()) file = [input() for i in range(n)] pat = [] for i in range(len(file[0])): for j in range(len(file) - 1): if file[j][i] != file[j+1][i]: pat.append('?') break else: pat.append(fil..
[Baekjoon/Python3] 1026번 보물 www.acmicpc.net/problem/1026 1026번: 보물 첫째 줄에 N이 주어진다. 둘째 줄에는 A에 있는 N개의 수가 순서대로 주어지고, 셋째 줄에는 B에 있는 수가 순서대로 주어진다. N은 50보다 작거나 같은 자연수이고, A와 B의 각 원소는 100보다 작거 www.acmicpc.net n = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) a.sort() b.sort(reverse=True) total = 0 for i in range(n): total += a[i] * b[i] print(total)
[Baekjoon/Python3/C] 1008번 A/B www.acmicpc.net/problem/10081008번: A/B두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오.www.acmicpc.net [Python3]A, B = map(int, input().split()) print(A / B) [C]#include int main(void) { double a, b; scanf("%lf %lf", &a, &b); printf("%.9lf", a/b); }
[Baekjoon/Python3/C] 1001번 A-B www.acmicpc.net/problem/10011001번: A-B두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오.www.acmicpc.net [Python3]A, B = map(int, input().split()) print(A - B) [C]#include int main(void) { int a, b; scanf("%d %d", &a, &b); printf("%d\n", a - b); return 0; }
[Baekjoon/Python3/C] 1000번 A+B www.acmicpc.net/problem/1000 1000번: A+B 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net [Python3] A, B = map(int, input().split()) print(A + B) [C] #include int main(void) { int a, b; scanf("%d %d", &a, &b); printf("%d\n", a + b); return 0; }