結果

問題 No.2903 A Round-the-World Trip with the Tent
ユーザー hiro1729hiro1729
提出日時 2024-09-27 21:28:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 584 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 92,664 KB
最終ジャッジ日時 2024-09-27 21:28:09
合計ジャッジ時間 6,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,272 KB
testcase_01 AC 37 ms
52,948 KB
testcase_02 AC 278 ms
92,152 KB
testcase_03 WA -
testcase_04 AC 309 ms
92,664 KB
testcase_05 AC 56 ms
65,516 KB
testcase_06 AC 86 ms
71,604 KB
testcase_07 AC 88 ms
71,828 KB
testcase_08 AC 271 ms
92,148 KB
testcase_09 AC 292 ms
89,180 KB
testcase_10 AC 90 ms
73,140 KB
testcase_11 AC 264 ms
89,628 KB
testcase_12 AC 160 ms
79,576 KB
testcase_13 AC 96 ms
72,592 KB
testcase_14 AC 179 ms
82,868 KB
testcase_15 AC 207 ms
82,268 KB
testcase_16 AC 113 ms
75,680 KB
testcase_17 AC 71 ms
69,216 KB
testcase_18 AC 72 ms
68,004 KB
testcase_19 AC 63 ms
66,292 KB
testcase_20 AC 282 ms
91,160 KB
testcase_21 AC 289 ms
91,036 KB
testcase_22 AC 98 ms
72,500 KB
testcase_23 AC 222 ms
84,284 KB
testcase_24 AC 180 ms
81,920 KB
testcase_25 AC 36 ms
53,060 KB
testcase_26 AC 37 ms
52,000 KB
testcase_27 AC 35 ms
52,560 KB
testcase_28 AC 41 ms
58,356 KB
testcase_29 AC 39 ms
53,028 KB
testcase_30 AC 38 ms
52,768 KB
testcase_31 AC 40 ms
58,868 KB
testcase_32 AC 34 ms
52,640 KB
testcase_33 AC 36 ms
52,304 KB
testcase_34 AC 42 ms
58,812 KB
testcase_35 AC 38 ms
52,432 KB
testcase_36 AC 38 ms
53,500 KB
testcase_37 AC 41 ms
59,516 KB
testcase_38 AC 35 ms
53,040 KB
testcase_39 AC 36 ms
53,488 KB
testcase_40 AC 35 ms
51,964 KB
testcase_41 AC 40 ms
52,748 KB
testcase_42 AC 36 ms
52,328 KB
testcase_43 AC 36 ms
53,404 KB
testcase_44 AC 36 ms
53,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 実は K は関係ない?(実験)
# https://oeis.org/A027375

K, N = map(int, input().split())

lpf = [-1] * (N + 1)
mobius = [1] * (N + 1)
isp = [True] * (N + 1)
isp[1] = False
for i in range(2, N + 1):
	if lpf[i] != -1:
		continue
	lpf[i] = i
	mobius[i] = -1
	for q in range(i * 2, N + 1, i):
		isp[q] = False
		if lpf[q] == -1:
			lpf[q] = i
		if (q // i) % i == 0:
			mobius[q] = 0
		else:
			mobius[q] *= -1

mod = 998244353

ans = 0
for i in range(1, N + 1):
	if N % i == 0:
		ans += mobius[i] * pow(2, N // i, mod)
		ans %= mod

if N == 1:
	ans += 1
	ans %= mod

print(ans)
0