파이썬2187 [백준/파이썬] 9443번 Arrangement of Contest -Codeal = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"input_arr = set([input()[0] for _ in range(int(input()))])res = 0for i in range(26): if al[i] not in input_arr: break res += 1 print(res) 2024. 10. 11. [백준/파이썬] 32288번 바코드 닉네임 -Coden = int(input())res = ""for word in input(): if word == "I": res += "i" else: res += "L"print(res) 2024. 10. 10. [백준/파이썬] 13773번 Olympic Games -Codewhile True: year = int(input()) if year == 0: break if 1896 2024. 10. 9. [백준/파이썬] 32498번 Call for Problems -Coderes = 0for _ in range(int(input())): n = int(input()) if n % 2 != 0: res += 1print(res) 2024. 10. 8. [백준/파이썬] 32458번 Just Round Down -Codeprint(int(float(input()))) 2024. 10. 7. [백준/파이썬] 32384번 사랑은 고려대입니다 -Codeprint(*["LoveisKoreaUniversity" for _ in range(int(input()))]) 2024. 10. 6. 이전 1 ··· 18 19 20 21 22 23 24 ··· 365 다음