結果

問題 No.2880 Max Sigma Mod
ユーザー miya145592miya145592
提出日時 2024-09-08 22:16:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,210 ms / 3,000 ms
コード長 483 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 76,528 KB
最終ジャッジ日時 2024-09-08 22:16:49
合計ジャッジ時間 19,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,568 KB
testcase_01 AC 44 ms
58,672 KB
testcase_02 AC 50 ms
62,112 KB
testcase_03 AC 53 ms
63,444 KB
testcase_04 AC 44 ms
59,160 KB
testcase_05 AC 983 ms
76,424 KB
testcase_06 AC 764 ms
76,512 KB
testcase_07 AC 477 ms
76,016 KB
testcase_08 AC 390 ms
75,884 KB
testcase_09 AC 247 ms
76,100 KB
testcase_10 AC 351 ms
76,436 KB
testcase_11 AC 562 ms
76,020 KB
testcase_12 AC 234 ms
76,236 KB
testcase_13 AC 102 ms
76,128 KB
testcase_14 AC 504 ms
75,964 KB
testcase_15 AC 1,210 ms
76,276 KB
testcase_16 AC 1,207 ms
76,132 KB
testcase_17 AC 1,204 ms
76,080 KB
testcase_18 AC 1,203 ms
76,344 KB
testcase_19 AC 1,210 ms
75,944 KB
testcase_20 AC 72 ms
76,152 KB
testcase_21 AC 271 ms
76,292 KB
testcase_22 AC 576 ms
76,152 KB
testcase_23 AC 69 ms
74,296 KB
testcase_24 AC 318 ms
76,028 KB
testcase_25 AC 967 ms
75,988 KB
testcase_26 AC 1,007 ms
76,528 KB
testcase_27 AC 967 ms
76,360 KB
testcase_28 AC 1,135 ms
76,192 KB
testcase_29 AC 437 ms
76,436 KB
testcase_30 AC 40 ms
53,572 KB
testcase_31 AC 40 ms
52,872 KB
testcase_32 AC 40 ms
52,084 KB
testcase_33 AC 39 ms
51,940 KB
testcase_34 AC 40 ms
52,708 KB
testcase_35 AC 39 ms
52,720 KB
testcase_36 AC 39 ms
53,796 KB
testcase_37 AC 40 ms
52,364 KB
testcase_38 AC 39 ms
52,260 KB
testcase_39 AC 39 ms
52,552 KB
testcase_40 AC 39 ms
53,788 KB
testcase_41 AC 39 ms
53,616 KB
testcase_42 AC 40 ms
53,788 KB
testcase_43 AC 40 ms
52,400 KB
testcase_44 AC 39 ms
53,368 KB
testcase_45 AC 40 ms
52,584 KB
testcase_46 AC 39 ms
52,752 KB
testcase_47 AC 40 ms
53,700 KB
testcase_48 AC 39 ms
52,564 KB
testcase_49 AC 45 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#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