結果

問題 No.2857 Div Array
ユーザー shobonvipshobonvip
提出日時 2024-08-25 13:52:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 593 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 275,384 KB
最終ジャッジ日時 2024-08-25 13:52:40
合計ジャッジ時間 4,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
69,256 KB
testcase_01 AC 50 ms
63,236 KB
testcase_02 AC 56 ms
65,496 KB
testcase_03 AC 56 ms
66,440 KB
testcase_04 AC 48 ms
63,736 KB
testcase_05 AC 47 ms
63,248 KB
testcase_06 AC 43 ms
61,996 KB
testcase_07 AC 58 ms
65,744 KB
testcase_08 AC 63 ms
66,568 KB
testcase_09 AC 76 ms
68,684 KB
testcase_10 AC 519 ms
78,784 KB
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int,input().split())

mat = [[[0] * (m) for i in range(m)] for j in range(30)]

for i in range(m):
	for j in range(m):
		if abs(m//(i+1) - m//(j+1)) <= k:
			mat[0][i][j] = 1


mod = 998244353
for num in range(29):
	for i in range(m):
		for j in range(m):
			for k in range(m):
				mat[num+1][i][j] += mat[num][i][k] * mat[num][k][j] % mod
			mat[num+1][i][j] %= mod

ans = [1] * m
n -= 1
for num in range(30):
	if n >> num & 1:
		na = [0] * m
		for i in range(m):
			for j in range(m):
				na[i] += mat[num][i][j] * ans[j] % mod
			na[i] %= mod
		ans = na

print(sum(ans) % mod)
0