結果

問題 No.2891 Mint
ユーザー adapchiadapchi
提出日時 2024-09-14 11:38:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-09-14 11:38:29
合計ジャッジ時間 8,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 49 ms
60,484 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 122 ms
75,820 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 212 ms
75,436 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 40 ms
52,736 KB
testcase_15 WA -
testcase_16 AC 40 ms
52,224 KB
testcase_17 AC 167 ms
76,012 KB
testcase_18 AC 122 ms
75,520 KB
testcase_19 AC 114 ms
75,696 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 196 ms
75,520 KB
testcase_26 AC 190 ms
75,360 KB
testcase_27 AC 184 ms
75,648 KB
testcase_28 WA -
testcase_29 AC 115 ms
75,648 KB
testcase_30 WA -
testcase_31 AC 120 ms
75,544 KB
testcase_32 WA -
testcase_33 AC 136 ms
75,392 KB
testcase_34 AC 143 ms
75,392 KB
testcase_35 AC 154 ms
75,392 KB
testcase_36 WA -
testcase_37 AC 106 ms
75,432 KB
testcase_38 AC 101 ms
75,284 KB
testcase_39 AC 114 ms
75,392 KB
testcase_40 AC 114 ms
75,776 KB
testcase_41 AC 96 ms
75,476 KB
testcase_42 AC 40 ms
51,968 KB
testcase_43 AC 40 ms
52,224 KB
testcase_44 AC 40 ms
52,736 KB
testcase_45 AC 40 ms
52,480 KB
testcase_46 AC 39 ms
52,224 KB
testcase_47 AC 111 ms
75,264 KB
testcase_48 AC 118 ms
75,448 KB
testcase_49 AC 117 ms
75,264 KB
testcase_50 AC 70 ms
75,212 KB
testcase_51 AC 101 ms
75,316 KB
testcase_52 AC 72 ms
75,392 KB
testcase_53 AC 94 ms
75,776 KB
testcase_54 AC 96 ms
75,392 KB
testcase_55 AC 72 ms
75,524 KB
testcase_56 AC 155 ms
75,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt

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

def decomp(n, m):
  for k in range(1, min(isqrt(m) + 1, n + 1)):
    yield k, k + 1, m // k
  for q in range(0, isqrt(m)):
    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