백준2300 [백준/파이썬] 30841번 Ложки -Codea, b = map(int, input().split())print((a * b) // (a + b) if a + b > 0 else 0) 2024. 12. 21. [백준/파이썬] 32500번 Dishonest Lottery -Codefrom collections import defaultdictlottery = defaultdict(int)n = int(input())for _ in range(n * 10): nums = list(map(int, input().split())) for num in nums: lottery[num] += 1res = [num for num, cnt in lottery.items() if cnt > n * 2]if res: print(" ".join(map(str, sorted(res))))else: print(-1)출력을 *sorted(res)로 했더니 타입 에러가 생겨서 join을 통해 출력하니 해결이 되었습니다. 2024. 12. 20. [백준/파이썬] 25084번 Infinity Area -Codefrom math import pifor t in range(1, int(input()) + 1): r, a, b = map(int, input().split()) res = 0 while r > 0: res += pi * (r ** 2) r *= a res += pi * (r ** 2) r //= b print(f"Case #{t}: {res:.6f}") 2024. 12. 19. [백준/파이썬] 32969번 학술대회 참가신청 -Codes = input()digital = ["social", "history", "language", "literacy"]for el in digital: if el in s: print("digital humanities") exit()print("public bigdata") 2024. 12. 18. [백준/파이썬] 32888번 Consolidating Windows -Codefrom math import sqrta, b = map(int, input().split())print(sqrt(a ** 2 + b ** 2)) 2024. 12. 17. [백준/파이썬] 10187번 Golden -Codefrom math import sqrtgolden_ratio = (1 + sqrt(5)) / 2for _ in range(int(input())): a, b = map(float, input().split()) if a 2024. 12. 16. 이전 1 2 3 4 ··· 384 다음