結果

問題 No.1595 The Final Digit
ユーザー ntudantuda
提出日時 2021-07-22 15:46:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 53,164 KB
最終ジャッジ日時 2024-07-17 14:54:39
合計ジャッジ時間 1,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,964 KB
testcase_01 AC 36 ms
52,204 KB
testcase_02 AC 40 ms
52,212 KB
testcase_03 AC 37 ms
52,892 KB
testcase_04 AC 37 ms
52,316 KB
testcase_05 AC 37 ms
52,940 KB
testcase_06 AC 37 ms
52,796 KB
testcase_07 AC 36 ms
52,468 KB
testcase_08 AC 37 ms
52,484 KB
testcase_09 AC 37 ms
52,188 KB
testcase_10 AC 37 ms
53,076 KB
testcase_11 AC 37 ms
52,684 KB
testcase_12 AC 37 ms
52,088 KB
testcase_13 AC 37 ms
52,524 KB
testcase_14 AC 37 ms
53,164 KB
testcase_15 AC 37 ms
52,660 KB
testcase_16 AC 38 ms
53,068 KB
testcase_17 AC 36 ms
52,960 KB
testcase_18 AC 37 ms
52,460 KB
testcase_19 AC 36 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
p,q,r,K = map(int,input().split())

if K < 4:
    print([p,q,r][K-1])
    sys.exit()
K -= 4
K %= 124
A = [p%10,q%10,r%10]
for i in range(K+1):
    a = sum(A) % 10
    A = A[1:] + [a]
print(a)
0