結果

問題 No.2880 Max Sigma Mod
ユーザー titiatitia
提出日時 2024-09-23 01:31:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 377 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 82,296 KB
最終ジャッジ日時 2024-09-23 01:31:53
合計ジャッジ時間 21,522 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
66,472 KB
testcase_01 AC 42 ms
58,632 KB
testcase_02 AC 43 ms
59,208 KB
testcase_03 AC 44 ms
59,784 KB
testcase_04 AC 42 ms
58,932 KB
testcase_05 TLE -
testcase_06 AC 2,745 ms
75,544 KB
testcase_07 AC 1,708 ms
75,700 KB
testcase_08 AC 1,333 ms
75,420 KB
testcase_09 AC 636 ms
75,536 KB
testcase_10 AC 1,109 ms
75,280 KB
testcase_11 AC 2,043 ms
75,360 KB
testcase_12 AC 570 ms
75,328 KB
testcase_13 AC 183 ms
73,256 KB
testcase_14 AC 1,788 ms
75,192 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

def calc(x):
    ANS=x*M

    ind=1
    while ind<=M:
        k=x//ind
        if k==0:
            break
        MAX=x//k

        # [ind,MAX]

        MAX=min(MAX,M)

        ANS-=(ind+MAX)*(MAX-ind+1)*k//2
        ind=MAX+1

    return ANS

ANS=0

for i in range(N+1):
    ANS=max(ANS,calc(i))

print(ANS)
0