메뉴 건너뛰기

mod = int(input())
l = list(map(int, input().split()))
assert len(l) == 10
s = sum(l) * 2
print(s % mod)

 

위와 같은 코드에서 AssertionError이 발생합니다. 데이터를 수정해 주세요.

 

수정) \t, \r이 모두 사용되고 있음을 확인했습니다.

수정한 이유 :

위로