結果
問題 | No.1595 The Final Digit |
ユーザー | Shirotsume |
提出日時 | 2021-07-09 23:09:29 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 383 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-01 18:13:45 |
合計ジャッジ時間 | 1,591 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | RE | - |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,880 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | AC | 30 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | AC | 30 ms
10,752 KB |
testcase_18 | AC | 30 ms
10,752 KB |
testcase_19 | AC | 31 ms
10,880 KB |
ソースコード
p, q, r, k = map(int,input().split()) a = [0] * 10000 a[0] = p % 10 a[1] = q % 10 a[2] = r % 10 for i in range(3, 100): x = (a[i - 1] + a[i - 2] + a[i - 3]) % 10 if x in a[4:]: start = a.index(x) end = i a[i] = x break a[i] = x if k < end: print(a[k - 1]) exit() ind = (k - start) % (end - start) + start - 1 print(a[ind])