파이썬2192 [백준/파이썬] 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. [백준/파이썬] 29724번 🍎📦 '사과상자'에 들어있는 것은 무엇? 현금? -Codebox, cnt = 0, 0for _ in range(int(input())): box_type, w, h, l = input().split() w, h, l = int(w), int(h), int(l) if box_type == 'A': cnt += (w // 12) * (h // 12) * (l // 12) box += 1000 else: box += 6000box += cnt * 500price = cnt * 4000print(box)print(price) 2024. 10. 5. 이전 1 ··· 19 20 21 22 23 24 25 ··· 366 다음