분류 전체보기439 백준 3053번 파이썬 import mathr = int(input())print("{0:.6f}".format(round(r*r*math.pi,6)))print("{0:.6f}".format(round(r*r*2,6))) 2018. 10. 1. 백준 2490번 파이썬 lists = [0]*4for i in range(3): lists = list(map(int,input().split())) if lists.count(1) == 0: print('D') elif lists.count(1) == 1: print('C') elif lists.count(1) == 2: print('B') elif lists.count(1) == 3: print('A') elif lists.count(1) == 4: print('E') 2018. 9. 30. 백준 9375번 파이썬 count=0for i in range(int(input())): list = {} sum=1 for j in range(int(input())): a,b = input().split() if not b in list: list[b] = 1 else: list[b] +=1 for k in list.keys(): sum =sum * (list[k]+1) print(sum-1) 2018. 9. 30. 백준 6591번 파이썬 a,b =map(int,input().split())while 1>0: if a==0 and b==0: break if b > a-b : b = a-b sum =1 for i in range(1,b+1): sum = sum*a/i a-=1 print(int(sum)) a,b =map(int,input().split()) 2018. 9. 28. 이전 1 ··· 94 95 96 97 98 99 100 ··· 110 다음