結果

問題 No.1595 The Final Digit
ユーザー ShirotsumeShirotsume
提出日時 2021-07-09 22:00:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 382 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 67,084 KB
最終ジャッジ日時 2024-07-01 16:22:40
合計ジャッジ時間 2,393 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 RE -
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 WA -
testcase_07 AC 43 ms
51,840 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 RE -
testcase_14 AC 41 ms
51,328 KB
testcase_15 WA -
testcase_16 RE -
testcase_17 AC 41 ms
51,968 KB
testcase_18 AC 39 ms
51,584 KB
testcase_19 AC 41 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a = [0] * 100

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])
0