結果

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

ソースコード

diff #

from math import isqrt
n,m = map(int,input().split())
l = isqrt(n); x = n*m
for i in range(1,l+1): x -= m//i*i
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