結果

問題 No.2902 ZERO!!
ユーザー ニックネームニックネーム
提出日時 2024-09-27 20:49:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 93,360 KB
最終ジャッジ日時 2024-09-27 20:49:08
合計ジャッジ時間 6,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,148 KB
testcase_01 AC 38 ms
52,744 KB
testcase_02 AC 232 ms
93,360 KB
testcase_03 AC 39 ms
53,908 KB
testcase_04 AC 93 ms
72,048 KB
testcase_05 AC 142 ms
78,388 KB
testcase_06 AC 219 ms
92,332 KB
testcase_07 AC 101 ms
72,824 KB
testcase_08 AC 206 ms
89,680 KB
testcase_09 AC 207 ms
89,148 KB
testcase_10 AC 167 ms
82,844 KB
testcase_11 AC 144 ms
81,116 KB
testcase_12 AC 64 ms
67,092 KB
testcase_13 AC 208 ms
90,752 KB
testcase_14 AC 168 ms
83,744 KB
testcase_15 AC 188 ms
85,900 KB
testcase_16 AC 129 ms
77,992 KB
testcase_17 AC 202 ms
88,892 KB
testcase_18 AC 196 ms
87,420 KB
testcase_19 AC 181 ms
86,052 KB
testcase_20 AC 162 ms
82,040 KB
testcase_21 AC 170 ms
84,064 KB
testcase_22 AC 110 ms
74,676 KB
testcase_23 AC 136 ms
78,028 KB
testcase_24 AC 43 ms
59,028 KB
testcase_25 AC 46 ms
60,532 KB
testcase_26 AC 42 ms
59,020 KB
testcase_27 AC 45 ms
59,520 KB
testcase_28 AC 42 ms
60,304 KB
testcase_29 AC 44 ms
59,636 KB
testcase_30 AC 45 ms
59,732 KB
testcase_31 AC 45 ms
60,420 KB
testcase_32 AC 45 ms
59,436 KB
testcase_33 AC 45 ms
59,148 KB
testcase_34 AC 40 ms
52,144 KB
testcase_35 AC 45 ms
60,492 KB
testcase_36 AC 44 ms
59,684 KB
testcase_37 AC 44 ms
58,648 KB
testcase_38 AC 45 ms
60,412 KB
testcase_39 AC 39 ms
52,548 KB
testcase_40 AC 40 ms
52,220 KB
testcase_41 AC 39 ms
53,312 KB
testcase_42 AC 45 ms
60,268 KB
testcase_43 AC 39 ms
52,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = int(input()),998244353
a = []; f = [0]*(n+1)
for i in range(2,n+1):
    if f[i]: continue
    c = 0; m = n
    while m: c += m//i; m //= i
    a.append(c)
    for j in range(1,n//i+1): f[i*j] = 1
r = [1]*(a[0]+1); s = 0
for v in a:
    for i in range(1,v+1):
        s += r[i]*(v//i)%z; r[i] = r[i]*(v//i+1)%z
print(s%z)
0