結果

問題 No.1595 The Final Digit
ユーザー Eki1009Eki1009
提出日時 2021-07-09 21:35:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,160 KB
最終ジャッジ日時 2024-07-01 15:19:45
合計ジャッジ時間 1,753 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 45 ms
58,624 KB
testcase_05 AC 45 ms
58,496 KB
testcase_06 AC 50 ms
59,776 KB
testcase_07 AC 49 ms
59,776 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 44 ms
52,096 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 41 ms
52,480 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 AC 49 ms
60,160 KB
testcase_15 AC 49 ms
59,904 KB
testcase_16 AC 48 ms
59,776 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 AC 41 ms
52,096 KB
testcase_19 AC 49 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10
p, q, r, k = map(int, input().split())
def mul(A, B):
    n = len(A)
    C = [[0]*n for _ in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                C[i][j] += A[i][k] * B[k][j]
                C[i][j] %= mod
    return C
def mpow(A, n):
    if n == 1:
        return A
    if n%2:
        return mul(mpow(A, n-1), A)
    B = mpow(A, n//2)
    return mul(B, B)
A = [[0,1,0], [0,0,1], [1,1,1]]
B = mpow(A, k-3)
ans = B[-1][0]*p + B[-1][1]*q + B[-1][2]*r
ans %= mod
print(ans)
0