結果

問題 No.1595 The Final Digit
ユーザー noriocnorioc
提出日時 2021-07-10 02:17:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-01 21:16:52
合計ジャッジ時間 1,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 30 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 WA -
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
from itertools import count

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

p %= 10
q %= 10
r %= 10
memo = collections.defaultdict(int)
memo[p, q, r] = 2
a = [p, q, r]
for i in count(3):
    x = (a[-1] + a[-2] + a[-3]) % 10
    a.append(x)
    if i == K:
        print(a[-1])
        break

    key = (a[-3], a[-2], a[-1])
    if key in memo: # found cycle
        loop_start = memo[key]
        loop_len = i - loop_start
        index = ((K - 1) - loop_start) % loop_len + loop_start
        print(a[index])
        break
    memo[key] = i
0