結果

問題 No.2891 Mint
ユーザー hiro1729hiro1729
提出日時 2024-09-13 21:39:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 75,836 KB
最終ジャッジ日時 2024-09-13 21:40:25
合計ジャッジ時間 5,183 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 39 ms
53,012 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 113 ms
75,392 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 38 ms
51,456 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 99 ms
75,008 KB
testcase_18 AC 79 ms
75,008 KB
testcase_19 AC 76 ms
75,264 KB
testcase_20 AC 93 ms
75,264 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 69 ms
75,392 KB
testcase_24 AC 93 ms
75,264 KB
testcase_25 AC 109 ms
75,392 KB
testcase_26 AC 105 ms
75,484 KB
testcase_27 AC 102 ms
74,880 KB
testcase_28 AC 110 ms
75,136 KB
testcase_29 AC 76 ms
75,008 KB
testcase_30 WA -
testcase_31 AC 77 ms
75,008 KB
testcase_32 AC 99 ms
74,880 KB
testcase_33 AC 85 ms
75,392 KB
testcase_34 WA -
testcase_35 AC 92 ms
75,436 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 38 ms
52,156 KB
testcase_43 AC 38 ms
51,840 KB
testcase_44 AC 38 ms
51,712 KB
testcase_45 AC 38 ms
52,224 KB
testcase_46 AC 39 ms
52,352 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt

N, M = map(int, input().split())
ans = N * M
dif = 0
# dif = sum(k * (M // k) for k in range(1, N + 1))
s = min(N, isqrt(M))
for i in range(1, s + 1):
	dif += i * (M // i)
for i in range(s + 1):
	# M // k = i となる k の範囲
	le = M // (i + 1)
	ri = M // i if i > 0 else 10 ** 9
	le = max(le, s)
	ri = min(ri, N)
	dif += (ri * (ri + 1) // 2 - le * (le + 1) // 2) * i
print((ans - dif) % 998244353)
0