結果

問題 No.2903 A Round-the-World Trip with the Tent
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2024-08-21 22:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,892 KB
実行使用メモリ 91,900 KB
最終ジャッジ日時 2024-09-27 19:30:31
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,868 KB
testcase_01 AC 38 ms
52,696 KB
testcase_02 AC 178 ms
91,900 KB
testcase_03 AC 37 ms
52,936 KB
testcase_04 AC 177 ms
91,528 KB
testcase_05 AC 53 ms
64,224 KB
testcase_06 AC 71 ms
77,100 KB
testcase_07 AC 71 ms
77,384 KB
testcase_08 AC 165 ms
90,984 KB
testcase_09 AC 157 ms
90,164 KB
testcase_10 AC 79 ms
79,544 KB
testcase_11 AC 168 ms
90,684 KB
testcase_12 AC 109 ms
83,988 KB
testcase_13 AC 80 ms
80,048 KB
testcase_14 AC 125 ms
85,732 KB
testcase_15 AC 122 ms
85,836 KB
testcase_16 AC 87 ms
80,844 KB
testcase_17 AC 61 ms
71,404 KB
testcase_18 AC 63 ms
71,380 KB
testcase_19 AC 57 ms
66,484 KB
testcase_20 AC 171 ms
90,916 KB
testcase_21 AC 177 ms
91,044 KB
testcase_22 AC 83 ms
80,264 KB
testcase_23 AC 143 ms
87,360 KB
testcase_24 AC 125 ms
85,420 KB
testcase_25 AC 38 ms
53,016 KB
testcase_26 AC 39 ms
53,388 KB
testcase_27 AC 42 ms
53,012 KB
testcase_28 AC 45 ms
59,980 KB
testcase_29 AC 40 ms
53,344 KB
testcase_30 AC 40 ms
53,320 KB
testcase_31 AC 43 ms
59,692 KB
testcase_32 AC 39 ms
52,956 KB
testcase_33 AC 39 ms
52,188 KB
testcase_34 AC 44 ms
60,844 KB
testcase_35 AC 38 ms
52,532 KB
testcase_36 AC 39 ms
53,868 KB
testcase_37 AC 43 ms
60,292 KB
testcase_38 AC 39 ms
53,884 KB
testcase_39 AC 38 ms
53,240 KB
testcase_40 AC 38 ms
52,832 KB
testcase_41 AC 38 ms
52,468 KB
testcase_42 AC 38 ms
52,072 KB
testcase_43 AC 38 ms
52,820 KB
testcase_44 AC 39 ms
53,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353

k,n=(int(x) for x in input().split())

ans=[1]*(n+1)
for i in range(1,n+1):
    ans[i]=ans[i-1]*2
    ans[i]%=MOD

prime=[True]*(n+1)
prime[0]=False
prime[1]=False
for i in range(2,n+1):
    if prime[i]:
        for j in reversed(range(1,n//i+1)):
            prime[i*j]=(j==1)
            ans[i*j]-=ans[j]
            ans[i*j]%=MOD
if k!=1 and n==1:
    print(ans[n]+1)
else:
    print(ans[n])
0