結果

問題 No.2891 Mint
ユーザー 👑 seekworserseekworser
提出日時 2024-07-05 14:23:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,520 KB
最終ジャッジ日時 2024-07-05 14:23:26
合計ジャッジ時間 5,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 105 ms
75,520 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 WA -
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 37 ms
52,224 KB
testcase_17 AC 85 ms
71,168 KB
testcase_18 AC 69 ms
66,432 KB
testcase_19 AC 67 ms
65,280 KB
testcase_20 AC 82 ms
69,976 KB
testcase_21 AC 70 ms
65,536 KB
testcase_22 AC 91 ms
72,448 KB
testcase_23 AC 60 ms
63,744 KB
testcase_24 AC 81 ms
69,632 KB
testcase_25 AC 97 ms
73,984 KB
testcase_26 AC 93 ms
72,960 KB
testcase_27 AC 90 ms
72,192 KB
testcase_28 AC 100 ms
75,136 KB
testcase_29 AC 66 ms
65,920 KB
testcase_30 AC 84 ms
70,400 KB
testcase_31 AC 69 ms
66,176 KB
testcase_32 AC 86 ms
71,296 KB
testcase_33 AC 81 ms
68,224 KB
testcase_34 AC 79 ms
68,736 KB
testcase_35 AC 81 ms
69,632 KB
testcase_36 AC 85 ms
70,528 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 37 ms
52,068 KB
testcase_43 AC 38 ms
52,224 KB
testcase_44 AC 38 ms
52,308 KB
testcase_45 AC 37 ms
51,968 KB
testcase_46 AC 38 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

mod = 998244353
n,m = map(int, input().split())

k = isqrt(m)
ans = 0
for i in range(1, k+1):
    ans += (m % i)
    ans %= mod

for d in range(0, m//k+1):
    r = n+1 if d == 0 else min(m // d + 1, n+1)
    l = max(m // (d+1) + 1, k+1)
    if r <= l: continue
    ans += m * (r-l) - (r-l) * (l+r-1) // 2 * d
    ans %= mod
print(ans)
0