백준2300 [백준/파이썬] 32929번 UOS 문자열 -Codeprint("UOS"[int(input()) % 3 - 1]) 2024. 12. 9. [백준/파이썬] 32777번 가희와 서울 지하철 2호선 - Codedef solution(n1, n2): out = (n1 - n2 + 43) % 43 inner = (n2 - n1 + 43) % 43 if out > inner: return "Inner circle line" return "Outer circle line"for _ in range(int(input())): a, b = map(int, input().split()) print(solution(a, b)) 2024. 12. 8. [백준/파이썬] 32905번 RACI -Coden, m = map(int, input().split())flag = Truefor _ in range(n): line = list(input().split()) if line.count("A") != 1: flag = Falseprint("Yes" if flag else "No") 2024. 12. 7. [백준/파이썬] 32866번 코인의 신 건모 -Coden = int(input())x = int(input())res = n / (n - n * (x / 100)) - 1print(round(res * 100, 7)) 2024. 12. 6. [백준/파이썬] 32778번 가희와 부역명 -Codeline = input().split("(")station, sub = line[0], line[1][:-1] if len(line) == 2 else ""print(station)print(sub if len(sub) != 0 else "-") 2024. 12. 5. [백준/파이썬] 26173번 Cup Covering -Codefrom math import pi, sqrta = int(input())print(round(sqrt(a / pi) * 2, 10)) 2024. 12. 4. 이전 1 2 3 4 5 6 ··· 384 다음