結果

問題 No.1595 The Final Digit
ユーザー T0RA1107T0RA1107
提出日時 2021-10-09 15:52:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 941 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,364 KB
最終ジャッジ日時 2024-09-13 01:40:33
合計ジャッジ時間 11,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,236 KB
testcase_01 AC 519 ms
44,232 KB
testcase_02 AC 519 ms
44,232 KB
testcase_03 AC 522 ms
43,976 KB
testcase_04 AC 521 ms
43,844 KB
testcase_05 AC 525 ms
43,976 KB
testcase_06 AC 517 ms
43,980 KB
testcase_07 AC 515 ms
44,236 KB
testcase_08 AC 521 ms
43,852 KB
testcase_09 AC 514 ms
44,236 KB
testcase_10 AC 517 ms
43,980 KB
testcase_11 AC 518 ms
44,236 KB
testcase_12 AC 518 ms
43,844 KB
testcase_13 AC 518 ms
44,356 KB
testcase_14 AC 518 ms
44,364 KB
testcase_15 AC 525 ms
44,232 KB
testcase_16 AC 523 ms
44,240 KB
testcase_17 AC 520 ms
44,228 KB
testcase_18 AC 519 ms
44,232 KB
testcase_19 AC 518 ms
44,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline

def from_read(dtype=np.int64):
    return np.fromstring(read().decode(), dtype=dtype, sep=' ')

def from_readline(dtype=np.int64):
    return np.fromstring(readline().decode(), dtype=dtype, sep=' ')

def read_matrix(N, M, dtype=np.int64):
    matrix = np.empty((N, M), dtype=dtype)
    for i in range(N):
        matrix[i] = from_readline(dtype)
    return matrix

def matrix_pow(A, N):
    res = np.eye(len(A), dtype=np.int64)
    while N:
        if N & 1:
            res = res @ A % 10
        A = A @ A % 10
        N >>= 1
    return res

def solve(p, q, r, K):
    A = np.array([[1, 1, 1], [1, 0, 0], [0, 1, 0]])
    B = matrix_pow(A, K - 3)
    res = B[0, 0] * r + B[0, 1] * q + B[0, 2] * p
    res %= 10
    return res

def main():
    p, q, r, K = from_readline()
    print(solve(p, q, r, K))

if __name__ == "__main__":
    main()

0