結果

問題 No.2891 Mint
ユーザー ニックネームニックネーム
提出日時 2024-09-13 22:34:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-13 22:34:55
合計ジャッジ時間 30,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt
n,m = map(int,input().split())
l = isqrt(m); x = n*m
for i in range(1,l+1): x -= m//i*i
if l<n:
    for i in range(1,m//l+1): x -= (l+1+min(m//i,n))*(min(m//i,n)-l)//2
print(x%998244353)
0