#2 백준 2562번 파이썬

less than 1 minute read

우보만리

  • np.argmax의 기능을 구현하는 문제

문제 link

max_ = 0
for i in range(9):
temp = int(input())
if temp > max_:
max_ = temp
loc = i+1
print(max_)
print(loc)
view raw 2562.py hosted with ❤ by GitHub