結果

問題 No.2903 A Round-the-World Trip with the Tent
ユーザー tassei903tassei903
提出日時 2024-09-27 21:15:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-09-27 21:16:05
合計ジャッジ時間 9,845 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,624 KB
testcase_02 AC 629 ms
83,672 KB
testcase_03 WA -
testcase_04 AC 616 ms
83,712 KB
testcase_05 AC 49 ms
62,280 KB
testcase_06 AC 154 ms
71,068 KB
testcase_07 AC 160 ms
71,624 KB
testcase_08 AC 607 ms
83,464 KB
testcase_09 AC 573 ms
82,728 KB
testcase_10 AC 175 ms
72,784 KB
testcase_11 AC 578 ms
82,968 KB
testcase_12 AC 324 ms
79,916 KB
testcase_13 AC 169 ms
72,412 KB
testcase_14 AC 407 ms
80,376 KB
testcase_15 AC 389 ms
80,624 KB
testcase_16 AC 212 ms
76,076 KB
testcase_17 AC 107 ms
68,056 KB
testcase_18 AC 102 ms
67,240 KB
testcase_19 AC 69 ms
64,108 KB
testcase_20 AC 607 ms
83,336 KB
testcase_21 AC 611 ms
83,380 KB
testcase_22 AC 189 ms
75,552 KB
testcase_23 AC 452 ms
81,856 KB
testcase_24 AC 384 ms
80,500 KB
testcase_25 AC 36 ms
53,176 KB
testcase_26 AC 35 ms
53,228 KB
testcase_27 AC 35 ms
53,948 KB
testcase_28 AC 47 ms
58,772 KB
testcase_29 AC 39 ms
58,556 KB
testcase_30 AC 39 ms
58,252 KB
testcase_31 AC 41 ms
60,384 KB
testcase_32 AC 39 ms
58,688 KB
testcase_33 AC 36 ms
52,016 KB
testcase_34 AC 41 ms
60,196 KB
testcase_35 AC 36 ms
52,496 KB
testcase_36 AC 40 ms
58,416 KB
testcase_37 AC 41 ms
59,436 KB
testcase_38 AC 36 ms
52,124 KB
testcase_39 AC 41 ms
59,620 KB
testcase_40 AC 35 ms
53,168 KB
testcase_41 AC 36 ms
52,636 KB
testcase_42 AC 36 ms
52,744 KB
testcase_43 AC 36 ms
53,824 KB
testcase_44 AC 36 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

mod = 998244353
k, n = na()

if n == 1:
    if k == 1:
        print(2)
    else:
        print(3)

f = [0] * (1 + n)

for i in range(1, n + 1):
    f[i] = pow(2, i, mod)

for i in range(1, n + 1):
    for j in range(i * 2, n + 1, i):
        f[j] -= f[i]
        f[j] %= mod

print(f[n])
0