結果

問題 No.2903 A Round-the-World Trip with the Tent
ユーザー hiro1729hiro1729
提出日時 2024-09-27 21:35:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-09-27 21:35:19
合計ジャッジ時間 6,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 321 ms
91,904 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 324 ms
91,520 KB
testcase_05 AC 59 ms
65,408 KB
testcase_06 AC 101 ms
70,400 KB
testcase_07 AC 98 ms
70,656 KB
testcase_08 AC 313 ms
89,856 KB
testcase_09 AC 300 ms
88,960 KB
testcase_10 AC 113 ms
71,936 KB
testcase_11 AC 338 ms
89,472 KB
testcase_12 AC 185 ms
78,464 KB
testcase_13 AC 105 ms
72,064 KB
testcase_14 AC 218 ms
81,664 KB
testcase_15 AC 221 ms
81,152 KB
testcase_16 AC 133 ms
73,088 KB
testcase_17 AC 77 ms
68,096 KB
testcase_18 AC 79 ms
68,608 KB
testcase_19 AC 73 ms
65,920 KB
testcase_20 AC 318 ms
90,752 KB
testcase_21 AC 324 ms
90,752 KB
testcase_22 AC 118 ms
72,320 KB
testcase_23 AC 246 ms
84,352 KB
testcase_24 AC 235 ms
81,152 KB
testcase_25 AC 41 ms
51,840 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 44 ms
58,752 KB
testcase_29 AC 39 ms
51,712 KB
testcase_30 AC 39 ms
52,568 KB
testcase_31 AC 44 ms
58,368 KB
testcase_32 AC 39 ms
52,352 KB
testcase_33 AC 38 ms
51,456 KB
testcase_34 AC 44 ms
58,752 KB
testcase_35 AC 39 ms
52,352 KB
testcase_36 AC 40 ms
51,968 KB
testcase_37 AC 42 ms
58,112 KB
testcase_38 AC 38 ms
51,456 KB
testcase_39 AC 39 ms
51,584 KB
testcase_40 AC 40 ms
51,968 KB
testcase_41 AC 40 ms
51,968 KB
testcase_42 AC 39 ms
51,584 KB
testcase_43 AC 39 ms
52,224 KB
testcase_44 AC 42 ms
51,456 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 K != 1 and N == 1:
	ans += 1
	ans %= mod

print(ans)
0