반응형 baekjoon180 baekjoon - python - 4892 www.acmicpc.net/problem/4892 4892번: 숫자 맞추기 게임 입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스는 한 줄로 이루어져 있고, n0으로 이루어져 있다. (0 < n0 < 1,000,000) 입력의 마지막 줄에는 0이 하나 주어진다. www.acmicpc.net import sys idx = 1 while True: n0 = int(sys.stdin.readline()) if n0 == 0: break n1 = 3*n0 if n1 % 2 == 0: n2 = n1/2 else: n2 = (n1+1)/2 n3 = 3*n2 n4 = n3//9 if n1 % 2 == 0: result = 2 * n4 print('{}. even {}'.format(idx,int(.. 2020. 10. 14. baekjoon - python - 2752 www.acmicpc.net/problem/2752 2752번: 세수정렬 숫자 세 개가 주어진다. 이 숫자는 1보다 크거나 같고, 1,000,000보다 작거나 같다. 이 숫자는 모두 다르다. www.acmicpc.net # @Author YoungMinKim # baekjoon import sys while True: x,y = map(int,sys.stdin.readline().split()) if x == y == 0: break if x>y: print('Yes') else: print('No') 2020. 10. 14. baekjoon - python - 4101 www.acmicpc.net/problem/4101 4101번: 크냐? 입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스는 한 줄로 이루어져 있으며, 두 정수가 주어진다. 두 수는 백만보다 작거나 같은 양의 정수이다. 입력의 마지막 줄에는 0이 � www.acmicpc.net # @Author YoungMinKim # baekjoon import sys while True: x,y = map(int,sys.stdin.readline().split()) if x == y == 0: break if x>y: print('Yes') else: print('No') 2020. 10. 14. baekjoon - python - 16430 www.acmicpc.net/problem/16430 16430번: 제리와 톰 첫 번째 줄에 두 정수 A, B (1 ≤ A 2020. 10. 14. baekjoon - python - 19602 www.acmicpc.net/problem/19602 19602번: Dog Treats There are three lines of input. Each line contains a non-negative integer less than 10. The first line contains the number of small treats, S, the second line contains the number of medium treats, M, and the third line contains the number of large treats, www.acmicpc.net S = int(input()) M = int(input()) L = int(input()) score = S+2*M+3*L if score.. 2020. 10. 14. baekjoon - python - 18108 www.acmicpc.net/problem/18108 18108번: 1998년생인 내가 태국에서는 2541년생?! ICPC Bangkok Regional에 참가하기 위해 수완나품 국제공항에 막 도착한 팀 레드시프트 일행은 눈을 믿을 수 없었다. 공항의 대형 스크린에 올해가 2562년이라고 적혀 있던 것이었다. 불교 국가인 태국� www.acmicpc.net # @Author YoungMinKim # baekjoon import sys x= int(sys.stdin.readline()) num = 2541-1998 print(x-num) 2020. 10. 14. 이전 1 2 3 4 5 6 7 8 ··· 30 다음 반응형