結果

問題 No.2903 A Round-the-World Trip with the Tent
ユーザー tassei903tassei903
提出日時 2024-09-27 21:16:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 674 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-09-27 21:16:58
合計ジャッジ時間 9,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 674 ms
83,712 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 608 ms
84,096 KB
testcase_05 AC 54 ms
61,696 KB
testcase_06 AC 188 ms
71,168 KB
testcase_07 AC 155 ms
71,296 KB
testcase_08 AC 577 ms
83,456 KB
testcase_09 AC 579 ms
83,072 KB
testcase_10 AC 163 ms
72,064 KB
testcase_11 AC 549 ms
83,200 KB
testcase_12 AC 339 ms
80,256 KB
testcase_13 AC 168 ms
72,320 KB
testcase_14 AC 382 ms
80,812 KB
testcase_15 AC 380 ms
80,884 KB
testcase_16 AC 219 ms
75,904 KB
testcase_17 AC 105 ms
66,560 KB
testcase_18 AC 101 ms
66,560 KB
testcase_19 AC 68 ms
62,976 KB
testcase_20 AC 579 ms
83,456 KB
testcase_21 AC 603 ms
83,456 KB
testcase_22 AC 184 ms
73,600 KB
testcase_23 AC 428 ms
81,408 KB
testcase_24 AC 418 ms
80,768 KB
testcase_25 AC 39 ms
52,736 KB
testcase_26 AC 39 ms
52,608 KB
testcase_27 AC 40 ms
52,608 KB
testcase_28 AC 48 ms
58,624 KB
testcase_29 AC 43 ms
58,368 KB
testcase_30 AC 42 ms
58,496 KB
testcase_31 AC 45 ms
59,008 KB
testcase_32 AC 42 ms
58,368 KB
testcase_33 AC 37 ms
51,840 KB
testcase_34 AC 43 ms
59,392 KB
testcase_35 AC 36 ms
51,712 KB
testcase_36 AC 43 ms
58,240 KB
testcase_37 AC 45 ms
58,624 KB
testcase_38 AC 38 ms
52,096 KB
testcase_39 AC 43 ms
59,136 KB
testcase_40 AC 37 ms
52,096 KB
testcase_41 AC 37 ms
52,480 KB
testcase_42 AC 36 ms
52,096 KB
testcase_43 AC 37 ms
52,480 KB
testcase_44 AC 37 ms
52,352 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)
    exit()

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