結果

問題 No.2891 Mint
ユーザー adapchiadapchi
提出日時 2024-09-14 11:40:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 75,988 KB
最終ジャッジ日時 2024-09-14 11:40:39
合計ジャッジ時間 8,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 55 ms
60,288 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 118 ms
75,184 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 209 ms
75,508 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 39 ms
52,000 KB
testcase_10 AC 39 ms
51,876 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 38 ms
52,608 KB
testcase_14 AC 40 ms
52,096 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 174 ms
75,612 KB
testcase_18 AC 120 ms
75,776 KB
testcase_19 AC 112 ms
75,520 KB
testcase_20 AC 156 ms
75,248 KB
testcase_21 AC 112 ms
75,556 KB
testcase_22 AC 182 ms
75,988 KB
testcase_23 AC 98 ms
75,648 KB
testcase_24 AC 150 ms
75,484 KB
testcase_25 AC 206 ms
75,776 KB
testcase_26 AC 190 ms
75,436 KB
testcase_27 AC 181 ms
75,648 KB
testcase_28 AC 199 ms
75,392 KB
testcase_29 AC 114 ms
75,656 KB
testcase_30 AC 157 ms
75,492 KB
testcase_31 AC 120 ms
75,776 KB
testcase_32 AC 177 ms
75,228 KB
testcase_33 AC 135 ms
75,872 KB
testcase_34 AC 143 ms
75,676 KB
testcase_35 AC 152 ms
75,836 KB
testcase_36 AC 159 ms
75,520 KB
testcase_37 AC 104 ms
75,340 KB
testcase_38 AC 101 ms
75,244 KB
testcase_39 AC 115 ms
75,412 KB
testcase_40 AC 124 ms
75,488 KB
testcase_41 AC 86 ms
75,392 KB
testcase_42 AC 39 ms
52,352 KB
testcase_43 AC 39 ms
52,088 KB
testcase_44 AC 39 ms
52,352 KB
testcase_45 AC 38 ms
51,968 KB
testcase_46 AC 39 ms
52,096 KB
testcase_47 AC 109 ms
75,464 KB
testcase_48 AC 109 ms
75,392 KB
testcase_49 AC 116 ms
75,448 KB
testcase_50 AC 72 ms
75,748 KB
testcase_51 AC 99 ms
75,388 KB
testcase_52 AC 71 ms
75,320 KB
testcase_53 AC 101 ms
75,212 KB
testcase_54 AC 96 ms
75,276 KB
testcase_55 AC 62 ms
75,380 KB
testcase_56 AC 116 ms
75,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt

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

def decomp(n, m):
  for k in range(1, min(isqrt(m), n + 1)):
    yield k, k + 1, m // k
  for q in range(0, m // isqrt(m) + 1):
    l = min(n + 1, m // (q + 1) + 1)
    r = min(n + 1, m // q + 1) if q > 0 else n + 1
    yield l, r, q
    
def sum_range(l, r):
  return (l + r - 1) * (r - l) // 2
  
ans = sum(m * (r - l) - sum_range(l, r) * q for l, r, q in decomp(n, m))
print(ans % 998244353)
  
0