結果
問題 |
No.1050 Zero (Maximum)
|
ユーザー |
|
提出日時 | 2023-06-30 08:11:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 933 ms / 2,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 43,892 KB |
最終ジャッジ日時 | 2024-07-06 21:16:55 |
合計ジャッジ時間 | 13,254 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 |
ソースコード
import numpy as np M, K = map(int, input().split()) MOD = 10 ** 9 + 7 A = np.zeros((M, M), dtype=object) for i in range(M): for j in range(M): A[i, (i + j) % M] += 1 A[i, (i * j) % M] += 1 def pow_matrix_mod(x, n, mod=MOD): x = x.astype(object) if not n: return np.eye(len(x), dtype=object) if n % 2 == 0: return pow_matrix_mod(x @ x % mod, n // 2) % mod else: return x @ pow_matrix_mod(x @ x % mod, (n - 1) // 2) % mod print(pow_matrix_mod(A, K)[0, 0])