# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
27197 | 2017-07-10T12:34:54 Z | TAMREF | 팩토리얼 세제곱들의 합 (YDX14_fact) | Python 3 | 27 ms | 3 KB |
n,k=list(map(int,input().split())) S=0 fact=[1,1,2,6,24] for i in range(1,max(n,4)+1): S+=fact[i]**k print(S%10) if S%10 else print((S/10)%10)
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 27 ms | 3 KB | expected '4', found '3' |
2 | Halted | 0 ms | 0 KB | - |