백준2317 [백준/파이썬] 32246번 빙고 막기 -Coden = int(input())print(n if n != 2 else 3) 2024. 9. 26. [백준/파이썬] 3533번 Explicit Formula -Codefrom itertools import combinationsnums = list(map(int, input().split()))two = [i|j for i, j in combinations(nums, 2)]three = [i|j|k for i, j, k in combinations(nums, 3)]res = 0for el in two: res ^= elfor el in three: res ^= elprint(res) 2024. 9. 25. [백준/파이썬] 32342번 와우와 쿼리 -Codefor _ in range(int(input())): s = input() res = 0 for i in range(len(s) - 2): if s[i:i+3] == "WOW": res += 1 print(res) 2024. 9. 24. [백준/파이썬] 32278번 선택 가능성이 가장 높은 자료형 -Codedef solution(n): if -32768 2024. 9. 23. [백준/파이썬] 32297번 문자열을 만들어요 -Coden = int(input())s = input()print("YES" if 'gori' in s.lower() else "NO") 2024. 9. 22. [백준/파이썬] 32326번 Conveyor Belt Sushi -Codeprint(int(input()) * 3 + int(input()) * 4 + int(input()) * 5) 2024. 9. 21. 이전 1 ··· 15 16 17 18 19 20 21 ··· 387 다음