結果

問題 No.1595 The Final Digit
ユーザー H20H20
提出日時 2021-07-09 22:24:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,032 KB
最終ジャッジ日時 2024-07-01 17:00:57
合計ジャッジ時間 1,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 44 ms
54,016 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 44 ms
53,668 KB
testcase_04 AC 43 ms
53,120 KB
testcase_05 AC 45 ms
53,376 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 45 ms
53,248 KB
testcase_08 AC 45 ms
53,760 KB
testcase_09 AC 44 ms
53,760 KB
testcase_10 AC 44 ms
53,376 KB
testcase_11 AC 44 ms
53,120 KB
testcase_12 AC 50 ms
60,032 KB
testcase_13 AC 46 ms
53,248 KB
testcase_14 AC 48 ms
59,008 KB
testcase_15 AC 49 ms
59,136 KB
testcase_16 AC 46 ms
53,376 KB
testcase_17 AC 45 ms
53,376 KB
testcase_18 AC 45 ms
53,120 KB
testcase_19 AC 43 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
d = collections.defaultdict(int)
p,q,r,K = map(int, input().split())
A = [p%10,q%10,r%10]
for  i in range(K-3):
    if d[(A[1],A[2],sum(A)%10)]>0:
        temp = (K-d[(A[1],A[2],sum(A)%10)])%(i+3-d[(A[1],A[2],sum(A)%10)])
        for i in range(temp):
            A = [A[1],A[2],sum(A)%10]
        print(A[-1])
        exit()


    d[(A[1],A[2],sum(A)%10)]=i+3
    A = [A[1],A[2],sum(A)%10]
print(A[-1])
0