첫번쨰날 알고리즘 공부
#BOJ_11022번_A+B-8
lineNum = int(input())
for i in range(1,lineNum+1):
a,b = input().split()
a= int(a)
b= int(b)
print(f'Case #{i}: {a} + {b} = {a+b}')
#BOJ2562최댓값
list1 = []
for i in range(1,10):
num = int(input())
list1.append(num)
maxNum = max(list1)
maxIndex = list1.index(maxNum)
print(maxNum)
print(maxIndex)
#BOJ2753윤년
#윤년은 4의배수이면서 100배수가아닌경우 or 400의배수가아닐경우
yearInput = int(input())
if ((yearInput%4==0 and yearInput%100!=0 ) or yearInput%400==0):
print(1)
else:
print(0)
print('hello world')
#BOJ2562최댓값
list1 = []
for i in range(1,10):
num = int(input())
list1.append(num)
maxNum = max(list1)
maxIndex = list1.index(maxNum)
print(maxNum)
print(maxIndex)
Author And Source
이 문제에 관하여(첫번쨰날 알고리즘 공부), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cwangg897/TIL저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)