일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xcz.kr
- 사칙연산
- 써니나타스
- Digital Forensics
- 인코그니토
- writeup
- C
- Web
- 그리디 알고리즘
- cryptography
- Database
- php
- Incognito
- SuNiNaTas
- N0Named
- 수학
- 구현
- Forensics
- wargame
- Web Hacking
- CTF
- MySQL
- Text
- HackCTF
- Network
- Python
- misc
- 백준
- 문자열
- 정렬
- Today
- Total
목록전체 글 (439)
보안을 그리다, 훈이
[Baekjoon/Python3] 15727번 조별과제를 하려는데 조장이 사라졌다 www.acmicpc.net/problem/15727 15727번: 조별과제를 하려는데 조장이 사라졌다 3학년 1학기를 재학 중인 성우는 ‘빨간눈 초파리의 뒷다리 털의 개수와 파인애플 껍질의 이해’라는 과목을 수강 중이다. 기말고사를 맞이하여 교수님은 수강생들에게 조별과제를 내주었고, www.acmicpc.net import math l = float(input()) print(int(math.ceil(l / 5)))
[Baekjoon/Python3] 15680번 연세대학교 www.acmicpc.net/problem/15680 15680번: 연세대학교 연세대학교의 영문명은 YONSEI, 슬로건은 Leading the Way to the Future이다. 이를 출력하는 프로그램을 작성해보도록 하자. www.acmicpc.net s = int(input()) if s == 0: print('YONSEI') elif s == 1: print('Leading the Way to the Future')
[Baekjoon/Python3] 15596번 정수 N개의 합 www.acmicpc.net/problem/15596 15596번: 정수 N개의 합 C++17, Java 8, Python 3, C11, PyPy3, C99, C++98, C++11, C++14, Python 2, PyPy2, Go, C99 (Clang), C++98 (Clang), C++11 (Clang), C++14 (Clang), C11 (Clang), C++17 (Clang) www.acmicpc.net def solve(a): return sum(a)
[Baekjoon/Python3] 15552번 빠른 A+B www.acmicpc.net/problem/15552 15552번: 빠른 A+B 첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다. www.acmicpc.net import sys T = int(input()) for i in range(T): A, B = map(int, sys.stdin.readline().split()) print(A + B)
[Baekjoon/Python3] 15439번 Vera and Outfits www.acmicpc.net/problem/15439 15439번: Vera and Outfits Vera owns N tops and N pants. The i-th top and i-th pants have colour i, for 1 ≤ i ≤ N, where all N colours are different from each other. An outfit consists of one top and one pants. Vera likes outfits where the top and pants are not the same colour. www.acmicpc.net n = int(input()) print(n * (n - ..
[Baekjoon/Python3] 14928번 큰 수 (BIG) www.acmicpc.net/problem/14928 14928번: 큰 수 (BIG) 첫째 줄에 제연이가 가장 좋아하는 수 N이 주어진다. (N ≤ 101,000,000) www.acmicpc.net print(int(input()) % 20000303) import sys print(int(sys.stdin.readline()) % 20000303)
[Baekjoon/Python3] 14918번 더하기 www.acmicpc.net/problem/14918 14918번: 더하기 a b; a와 b는 -100,000과 100,000 사이의 정수이다. www.acmicpc.net import sys a, b = map(int, sys.stdin.readline().split()) print(a + b)
[Baekjoon/Python3] 14916번 거스름돈 www.acmicpc.net/problem/14916 14916번: 거스름돈 첫째 줄에 거스름돈 액수 n(1 ≤ n ≤ 100,000)이 주어진다. www.acmicpc.net n = int(input()) res = 0 if n in [1, 3]: res = -1 elif (n % 5) % 2 == 0: res = n // 5 + (n % 5) // 2 else: res = (n // 5 - 1) + ((n % 5 + 5) // 2) print(res)
[Baekjoon/Python3] 14914번 사과와 바나나 나눠주기 www.acmicpc.net/problem/14914 14914번: 사과와 바나나 나눠주기 아름이가 나누어 줄 수 있는 경우를 모두 출력해야 하며, 각 경우마다 친구의 수, 사과 개수, 바나나 개수 차례로 한 줄에 각각 빈칸으로 구분하여 출력한다. 각 경우마다 중복없이 한 번만 출력 www.acmicpc.net def GCD(a, b): if max(a, b) % min(a, b): return GCD(max(a, b) % min(a, b), min(a, b)) else: return min(a, b) a, b = map(int, input().split()) for i in range(1, GCD(a, b) + 1): if GCD(a..
[Baekjoon/Python3] 14912번 숫자 빈도수 www.acmicpc.net/problem/14912 14912번: 숫자 빈도수 자연수 n (1 ≤ n ≤ 100,000)과 한 자리 숫자 d(0~9)가 첫째 줄에 주어진다. www.acmicpc.net n, d = map(int, input().split()) cnt = 0 for i in range(1, n + 1): cnt += str(i).count(str(d)) print(cnt)