728x90 반응형 SMALL 백준문제105 백준) 30664번 - python while True: a = int(input()) if a == 0: break else: if a % 42 == 0: print("PREMIADO") else: print("TENTE NOVAMENTE") 2024. 3. 14. .백준) 30676번 - python lambda_star = int(input()) if 620 2024. 3. 13. 백준) 30224번 - python n = int(input()) if "7" not in str(n) and n % 7 !=0: print(0) elif "7" not in str(n) and n % 7 == 0: print(1) elif "7" in str(n) and n % 7 !=0: print(2) elif "7" in str(n) or n % 7 == 0: print(3) 2024. 3. 12. 백준) 30214번 - python a,b = map(int, input().split()) print("E" if a>=b/2 else "H") 2024. 3. 11. 이전 1 ··· 12 13 14 15 16 17 18 ··· 27 다음 728x90 반응형 LIST