Python/백준62 백준 - 7891 Can you add this? t = int(input()) for i in range(t): a, b = map(int, input().split()) print(a+b) 2022. 10. 11. 백준 - 10886 0 = not cute / 1 = cute n = int(input()) count0 = 0 count1 = 1 for i in range(n): s = int(input()) if s == 1: count1 += 1 else: count0 += 1 if count1 > count0: print("Junhee is cute!") else: print("Junhee is not cute!") 2022. 10. 10. 백준 - 10826 피보나치 수 4 a = 0 b = 1 c = 0 n = int(input()) for i in range(n): c = a+b a = b b = c print(a) 2022. 10. 8. 백준 - 2751 수 정렬하기 2 import sys input = sys.stdin.readline n = int(input()) num = [] for i in range(n): a = int(input()) num.append(a) num.sort() for i in num: print(i) 2022. 10. 7. 이전 1 2 3 4 5 6 7 ··· 16 다음