結果

問題 No.2880 Max Sigma Mod
ユーザー ntudantuda
提出日時 2024-09-11 22:36:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 587 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 85,540 KB
最終ジャッジ日時 2024-09-11 22:36:49
合計ジャッジ時間 20,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
66,544 KB
testcase_01 AC 46 ms
60,224 KB
testcase_02 AC 52 ms
63,932 KB
testcase_03 AC 51 ms
64,428 KB
testcase_04 AC 47 ms
61,508 KB
testcase_05 TLE -
testcase_06 AC 2,508 ms
77,420 KB
testcase_07 AC 1,539 ms
76,876 KB
testcase_08 AC 1,215 ms
76,456 KB
testcase_09 AC 615 ms
76,256 KB
testcase_10 AC 997 ms
76,784 KB
testcase_11 AC 1,841 ms
77,028 KB
testcase_12 AC 529 ms
76,304 KB
testcase_13 AC 184 ms
76,176 KB
testcase_14 AC 1,619 ms
76,756 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 #

def calc(x, m):
    T = []
    st = max(1, x // m)
    pre = x + 1
    for i in range(st, x + 1):
        now = x // i
        if pre == now:
            break
        T.append(x // i)
        pre = now
    T += list(reversed(range(1,now)))
    nt = len(T)
    ret = x * (m - 1)
    for i in range(nt - 1):
        a, b = T[i], T[i + 1]
        ret -= (a - b) * (a + b + 1) // 2 * (x // a)
        #print(i, a, b, x // a, (a - b) * (a + b + 1) // 2 * (x // a))
    return ret

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

for i in range(1, N + 1):
    ans = max(ans, calc(i, M))
print(ans)
0