結果
問題 | No.2857 Div Array |
ユーザー | ryuusagi |
提出日時 | 2024-08-25 15:45:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 857 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 82,568 KB |
実行使用メモリ | 102,672 KB |
最終ジャッジ日時 | 2024-08-25 15:45:28 |
合計ジャッジ時間 | 7,010 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
62,196 KB |
testcase_01 | AC | 49 ms
65,500 KB |
testcase_02 | AC | 59 ms
71,252 KB |
testcase_03 | AC | 53 ms
66,868 KB |
testcase_04 | AC | 47 ms
66,508 KB |
testcase_05 | AC | 48 ms
66,164 KB |
testcase_06 | AC | 48 ms
63,852 KB |
testcase_07 | AC | 62 ms
72,784 KB |
testcase_08 | AC | 52 ms
67,424 KB |
testcase_09 | AC | 92 ms
77,044 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
from functools import * # 行列 a * b を返す def mat_mul(a, b) : I, J, K = len(a), len(b[0]), len(b) c = [[0] * J for _ in range(I)] for i in range(I) : for j in range(J) : for k in range(K) : c[i][j] += a[i][k] * b[k][j] c[i][j] %= mod return c # 行列 x ^ n を返す @lru_cache(maxsize=None) def mat_pow(x, n): y = [[0] * len(x) for _ in range(len(x))] for i in range(len(x)): y[i][i] = 1 while n > 0: if n & 1: y = mat_mul(x, y) x = mat_mul(x, x) n >>= 1 return y mod = 998244353 n, m, k = map(int, input().split()) a = tuple([tuple([int(abs(m // (j + 1) - m // (i + 1)) <= k) for j in range(m)]) for i in range(m)]) ans = 0 for i in mat_mul(mat_pow(a, n - 1), [[1] for _ in range(m)]): ans += i[0] print(ans % mod)