結果

問題 No.2880 Max Sigma Mod
ユーザー miya145592miya145592
提出日時 2024-09-08 14:09:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,678 ms / 3,000 ms
コード長 309 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,900 KB
最終ジャッジ日時 2024-09-08 14:09:34
合計ジャッジ時間 25,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,692 KB
testcase_01 AC 45 ms
60,600 KB
testcase_02 AC 54 ms
64,848 KB
testcase_03 AC 58 ms
66,912 KB
testcase_04 AC 47 ms
60,192 KB
testcase_05 AC 1,342 ms
76,260 KB
testcase_06 AC 1,043 ms
76,128 KB
testcase_07 AC 677 ms
76,072 KB
testcase_08 AC 524 ms
76,632 KB
testcase_09 AC 289 ms
76,632 KB
testcase_10 AC 474 ms
76,216 KB
testcase_11 AC 775 ms
76,364 KB
testcase_12 AC 275 ms
76,384 KB
testcase_13 AC 124 ms
76,196 KB
testcase_14 AC 684 ms
76,504 KB
testcase_15 AC 1,678 ms
76,160 KB
testcase_16 AC 1,665 ms
76,220 KB
testcase_17 AC 1,666 ms
76,220 KB
testcase_18 AC 1,676 ms
76,252 KB
testcase_19 AC 1,673 ms
76,612 KB
testcase_20 AC 82 ms
76,332 KB
testcase_21 AC 358 ms
76,404 KB
testcase_22 AC 749 ms
76,228 KB
testcase_23 AC 81 ms
76,556 KB
testcase_24 AC 428 ms
76,224 KB
testcase_25 AC 1,328 ms
76,900 KB
testcase_26 AC 1,380 ms
76,272 KB
testcase_27 AC 1,353 ms
76,680 KB
testcase_28 AC 1,561 ms
76,340 KB
testcase_29 AC 563 ms
76,240 KB
testcase_30 AC 37 ms
53,292 KB
testcase_31 AC 39 ms
53,256 KB
testcase_32 AC 37 ms
52,592 KB
testcase_33 AC 37 ms
53,568 KB
testcase_34 AC 39 ms
53,836 KB
testcase_35 AC 37 ms
53,668 KB
testcase_36 AC 37 ms
52,936 KB
testcase_37 AC 38 ms
52,524 KB
testcase_38 AC 37 ms
53,204 KB
testcase_39 AC 38 ms
53,560 KB
testcase_40 AC 37 ms
53,544 KB
testcase_41 AC 37 ms
52,120 KB
testcase_42 AC 39 ms
53,124 KB
testcase_43 AC 39 ms
52,320 KB
testcase_44 AC 38 ms
52,624 KB
testcase_45 AC 39 ms
52,372 KB
testcase_46 AC 39 ms
51,940 KB
testcase_47 AC 40 ms
52,880 KB
testcase_48 AC 39 ms
52,548 KB
testcase_49 AC 46 ms
58,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt
def A004125(n): return n**2+((s:=isqrt(n))**2*(s+1)-sum((q:=n//k)*((k<<1)+q+1) for k in range(1, s+1))>>1)


import sys
input = sys.stdin.readline
N, M = map(int, input().split())
ans = 0
for i in range(1, N+1):
    tmp = i*(M-i)
    tmp += A004125(i)
    ans = max(ans, tmp)
print(ans)
0