728x90
1 2 3 4 5 6 7 8 9 10 | A, B = list(map(int,input().split())) if A > B: print(">") elif A < B: print("<") elif A == B: print("==") else: print("숫자를 입력해 주십시요.") | cs |
1 2 3 | N = int(input()) for i in range(1,10): print("{} * {} = {}".format(N,i,N*i)) | cs |
1 2 3 4 5 | A = int(input()) if A%4 == 0 and (A%100 != 0 or A%400 == 0): print("1") else: print("0") | cs |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | H, M= list(map(int,input().split())) if 0 <= H <= 23 and 0 <= M <= 59: if M >= 45: result_H = H result_M =M-45 elif H != 0 and M < 45: result_H = H - 1 result_M = (M+60) - 45 elif H == 0 and M < 45: result_H = 23 result_M = (M + 60) - 45 print(result_H,result_M) | cs |
1 2 3 4 5 | T = int(input()) temp = 0 for tc in range(1,T+1): temp += tc print(temp) | cs |
728x90
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
11763.전자키트11763.전자키트 (0) | 2021.04.15 |
---|---|
2491. 수열 (틀림) (0) | 2021.04.11 |
2628. 종이자르기 (0) | 2021.04.10 |
1244. 스위치 켜고 끄기 (0) | 2021.04.08 |
[백준] 2669. 직사각형 네개의 합집합의 면적 구하기 (0) | 2021.03.20 |