結果

問題 No.1595 The Final Digit
ユーザー hiro1729hiro1729
提出日時 2024-09-10 19:50:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 161 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 66,676 KB
最終ジャッジ日時 2024-09-10 19:50:54
合計ジャッジ時間 2,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,704 KB
testcase_01 AC 39 ms
52,576 KB
testcase_02 AC 37 ms
52,676 KB
testcase_03 AC 37 ms
51,740 KB
testcase_04 RE -
testcase_05 AC 37 ms
52,756 KB
testcase_06 AC 38 ms
51,564 KB
testcase_07 AC 37 ms
53,564 KB
testcase_08 AC 37 ms
52,976 KB
testcase_09 AC 38 ms
52,704 KB
testcase_10 AC 37 ms
52,128 KB
testcase_11 AC 38 ms
53,120 KB
testcase_12 RE -
testcase_13 AC 37 ms
52,012 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 37 ms
52,120 KB
testcase_18 AC 37 ms
52,220 KB
testcase_19 AC 37 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q, r, K = map(int, input().split())
K %= 124
K += 124
A = [0, p % 10, q % 10, r % 10]
for i in range(150):
	A.append((A[-1] + A[-2] + A[-3]) % 10)
print(A[K])
0