結果

問題 No.2891 Mint
ユーザー hiro1729hiro1729
提出日時 2024-09-13 21:40:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-09-13 21:40:35
合計ジャッジ時間 5,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 44 ms
52,992 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 126 ms
75,264 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 41 ms
51,712 KB
testcase_14 AC 43 ms
51,712 KB
testcase_15 AC 41 ms
51,968 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 109 ms
75,392 KB
testcase_18 AC 89 ms
75,264 KB
testcase_19 AC 88 ms
75,392 KB
testcase_20 AC 105 ms
75,264 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 81 ms
75,392 KB
testcase_24 AC 103 ms
75,392 KB
testcase_25 AC 120 ms
75,264 KB
testcase_26 AC 117 ms
75,264 KB
testcase_27 AC 112 ms
75,392 KB
testcase_28 AC 121 ms
75,264 KB
testcase_29 AC 87 ms
75,264 KB
testcase_30 WA -
testcase_31 AC 89 ms
75,264 KB
testcase_32 AC 109 ms
75,776 KB
testcase_33 AC 98 ms
75,264 KB
testcase_34 WA -
testcase_35 AC 103 ms
75,392 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 41 ms
52,224 KB
testcase_43 AC 42 ms
51,840 KB
testcase_44 AC 42 ms
51,968 KB
testcase_45 AC 41 ms
51,968 KB
testcase_46 AC 41 ms
51,968 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 ** 15
	le = max(le, s)
	ri = min(ri, N)
	dif += (ri * (ri + 1) // 2 - le * (le + 1) // 2) * i
print((ans - dif) % 998244353)
0