結果

問題 No.1573 Divisor Function
ユーザー ayaoniayaoni
提出日時 2021-09-01 22:17:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 748 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,408 KB
最終ジャッジ日時 2024-05-06 09:49:10
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,548 KB
testcase_01 AC 37 ms
53,192 KB
testcase_02 AC 46 ms
60,236 KB
testcase_03 AC 37 ms
53,804 KB
testcase_04 AC 37 ms
52,884 KB
testcase_05 AC 36 ms
53,164 KB
testcase_06 AC 37 ms
52,288 KB
testcase_07 WA -
testcase_08 AC 41 ms
52,884 KB
testcase_09 AC 36 ms
53,280 KB
testcase_10 AC 37 ms
53,340 KB
testcase_11 AC 37 ms
52,944 KB
testcase_12 AC 38 ms
53,472 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 39 ms
54,316 KB
testcase_17 AC 38 ms
52,740 KB
testcase_18 WA -
testcase_19 AC 46 ms
60,624 KB
testcase_20 AC 44 ms
59,736 KB
testcase_21 AC 47 ms
60,444 KB
testcase_22 WA -
testcase_23 AC 45 ms
59,752 KB
testcase_24 AC 47 ms
61,408 KB
testcase_25 WA -
testcase_26 AC 46 ms
60,308 KB
testcase_27 AC 46 ms
60,608 KB
testcase_28 AC 45 ms
61,136 KB
testcase_29 WA -
testcase_30 AC 47 ms
60,148 KB
testcase_31 WA -
testcase_32 AC 45 ms
60,524 KB
testcase_33 AC 46 ms
60,040 KB
testcase_34 WA -
testcase_35 AC 45 ms
61,040 KB
testcase_36 WA -
testcase_37 AC 46 ms
60,012 KB
testcase_38 AC 45 ms
60,312 KB
testcase_39 AC 46 ms
61,228 KB
testcase_40 AC 47 ms
60,132 KB
testcase_41 AC 46 ms
61,200 KB
testcase_42 AC 47 ms
59,992 KB
testcase_43 AC 45 ms
59,852 KB
testcase_44 AC 46 ms
60,100 KB
testcase_45 AC 46 ms
60,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


n,m = MI()
mod = 998244353

N = int(n**.5)
ans = 0
for i in range(1,min(N,m)+1):
    x = n//i
    ans += i*x*(x+3)//2
    ans %= mod

for x in range(N,0,-1):
    left = max(n//(x+1),N)+1
    right = min(m,n//x)
    if left > right:
        break
    ans += x*(x+3)//2*(left+right)*(right-left+1)//2
    ans %= mod

print(ans)
0