結果
問題 | No.1595 The Final Digit |
ユーザー | T0RA1107 |
提出日時 | 2021-10-09 15:51:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 968 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 44,524 KB |
最終ジャッジ日時 | 2024-09-13 01:39:46 |
合計ジャッジ時間 | 12,036 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
import sys import numpy as np from numba import njit, i8 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()