結果

問題 No.2902 ZERO!!
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2024-08-21 22:45:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 84,368 KB
最終ジャッジ日時 2024-08-21 22:46:05
合計ジャッジ時間 5,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,200 KB
testcase_01 AC 31 ms
52,556 KB
testcase_02 AC 155 ms
84,368 KB
testcase_03 AC 32 ms
52,732 KB
testcase_04 AC 69 ms
69,384 KB
testcase_05 AC 99 ms
73,216 KB
testcase_06 AC 159 ms
82,592 KB
testcase_07 AC 77 ms
68,304 KB
testcase_08 AC 136 ms
80,924 KB
testcase_09 AC 139 ms
81,300 KB
testcase_10 AC 117 ms
76,332 KB
testcase_11 AC 103 ms
73,512 KB
testcase_12 AC 51 ms
64,380 KB
testcase_13 AC 141 ms
81,084 KB
testcase_14 AC 116 ms
76,560 KB
testcase_15 AC 136 ms
79,004 KB
testcase_16 AC 95 ms
72,564 KB
testcase_17 AC 134 ms
79,728 KB
testcase_18 AC 135 ms
79,648 KB
testcase_19 AC 119 ms
78,068 KB
testcase_20 AC 109 ms
75,888 KB
testcase_21 AC 115 ms
75,776 KB
testcase_22 AC 78 ms
69,968 KB
testcase_23 AC 91 ms
72,488 KB
testcase_24 AC 35 ms
59,300 KB
testcase_25 AC 37 ms
59,764 KB
testcase_26 AC 35 ms
59,772 KB
testcase_27 AC 49 ms
59,876 KB
testcase_28 AC 36 ms
58,956 KB
testcase_29 AC 36 ms
59,096 KB
testcase_30 AC 38 ms
61,296 KB
testcase_31 AC 37 ms
58,916 KB
testcase_32 AC 38 ms
60,684 KB
testcase_33 AC 38 ms
58,808 KB
testcase_34 AC 31 ms
52,372 KB
testcase_35 AC 37 ms
59,060 KB
testcase_36 AC 40 ms
59,340 KB
testcase_37 AC 41 ms
59,636 KB
testcase_38 AC 40 ms
60,500 KB
testcase_39 AC 36 ms
53,356 KB
testcase_40 AC 35 ms
52,272 KB
testcase_41 AC 35 ms
52,200 KB
testcase_42 AC 41 ms
60,532 KB
testcase_43 AC 32 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353

n=int(input())

prime=[True]*(n+1)
prime[0]=False
prime[1]=False

emax=0
for i in range(2,n+1):
    if prime[i]:
        k=i
        e=0
        while n>=k:
            e+=n//k
            k*=i
        if i==2:
            emax=e
            prod=[1]*(emax+1)
        for j in range(1,e+1):
            prod[j]*=e//j+1
            prod[j]%=MOD
        j=2
        while i*j<=n:
            prime[i*j]=False
            j+=1
ans=MOD-emax
for i in range(1,emax+1):
    ans+=prod[i]
    ans%=MOD
print(ans)
0