結果

問題 No.1595 The Final Digit
ユーザー stngstng
提出日時 2021-07-18 13:34:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 26,432 KB
最終ジャッジ日時 2024-07-08 07:03:14
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
26,180 KB
testcase_01 AC 53 ms
26,136 KB
testcase_02 AC 55 ms
26,300 KB
testcase_03 AC 50 ms
26,304 KB
testcase_04 AC 50 ms
26,172 KB
testcase_05 AC 50 ms
26,304 KB
testcase_06 AC 51 ms
26,172 KB
testcase_07 AC 50 ms
26,176 KB
testcase_08 AC 50 ms
26,432 KB
testcase_09 AC 49 ms
26,172 KB
testcase_10 AC 49 ms
26,300 KB
testcase_11 AC 54 ms
26,304 KB
testcase_12 AC 52 ms
26,176 KB
testcase_13 AC 51 ms
26,432 KB
testcase_14 AC 49 ms
26,176 KB
testcase_15 AC 49 ms
26,304 KB
testcase_16 AC 50 ms
26,172 KB
testcase_17 AC 49 ms
26,180 KB
testcase_18 AC 50 ms
26,172 KB
testcase_19 AC 51 ms
26,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def srh(A,B,C):
    a[0],a[1],a[2] = A,B,C
    for i in range(3,len(a)):
        a[i] = a[i-1] + a[i-2] + a[i-3]
        a[i] %= 10
        if a[i-2] == a[0] and a[i-1] == a[1] and a[i] == a[2]:
            return i-2,a[:i-2]
            
"""
for i in range(3,len(a)):
    a[i] = a[i-1] + a[i-2] + a[i-3]
    a[i] %= 10
    if a[i-2] == a[0] and a[i-1] == a[1] and a[i] == a[2]:
        idx = i
        break
"""

K -= 4

a = [0]*10**6
f_idx , fst = srh(1,1,2)
a = [0]*10**6
s_idx , snd = srh(1,2,3)
a = [0]*10**6
t_idx , trd = srh(1,2,4)

ans = fst[K%f_idx]*p+snd[K%s_idx]*q+trd[K%t_idx]*r
print(ans%10)
0