파이썬/백준41 2921번 : 도미노 # 도미노 n = int(input()) result, s = 0,0 for i in range(0, n+1): for j in range(s, n+1): result += i+j s += 1 print(result) 2022. 6. 15. 10569번 : 다면체 # 다면체 n=int(input()) for _ in range(n): V, E=map(int, input().split()) print(E-V+2) 2022. 6. 14. 9295번 : 주사위 # 주사위 n = int(input()) for i in range(n): a, b = map(int, input().split()) print("Case", str(i+1)+":", a+b) 2022. 6. 13. 10178번 : 할로윈의 사탕 # 할로윈의 사탕 n = int(input()) for i in range(n): hap, candy = map(int, input().split()) print("You get", hap//candy, "piece(s) and your dad gets", hap % candy, "piece(s).") 2022. 6. 12. 이전 1 ··· 4 5 6 7 8 9 10 11 다음