結果

問題 No.2880 Max Sigma Mod
ユーザー detteiuudetteiuu
提出日時 2024-09-08 16:59:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 3,000 ms
コード長 473 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 89,520 KB
最終ジャッジ日時 2024-09-08 17:00:00
合計ジャッジ時間 4,960 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,932 KB
testcase_01 AC 39 ms
52,500 KB
testcase_02 AC 45 ms
60,132 KB
testcase_03 AC 44 ms
59,840 KB
testcase_04 AC 43 ms
59,036 KB
testcase_05 AC 83 ms
84,576 KB
testcase_06 AC 72 ms
79,500 KB
testcase_07 AC 70 ms
79,604 KB
testcase_08 AC 65 ms
75,184 KB
testcase_09 AC 60 ms
72,200 KB
testcase_10 AC 62 ms
70,672 KB
testcase_11 AC 70 ms
81,816 KB
testcase_12 AC 58 ms
68,964 KB
testcase_13 AC 56 ms
70,392 KB
testcase_14 AC 68 ms
76,372 KB
testcase_15 AC 84 ms
89,084 KB
testcase_16 AC 83 ms
89,520 KB
testcase_17 AC 83 ms
89,324 KB
testcase_18 AC 82 ms
89,104 KB
testcase_19 AC 82 ms
88,940 KB
testcase_20 AC 56 ms
70,360 KB
testcase_21 AC 64 ms
76,148 KB
testcase_22 AC 69 ms
80,340 KB
testcase_23 AC 55 ms
67,424 KB
testcase_24 AC 66 ms
76,916 KB
testcase_25 AC 79 ms
81,336 KB
testcase_26 AC 82 ms
87,420 KB
testcase_27 AC 79 ms
83,272 KB
testcase_28 AC 79 ms
85,112 KB
testcase_29 AC 65 ms
74,024 KB
testcase_30 AC 39 ms
52,472 KB
testcase_31 AC 38 ms
52,444 KB
testcase_32 AC 43 ms
59,872 KB
testcase_33 AC 37 ms
52,756 KB
testcase_34 AC 38 ms
52,564 KB
testcase_35 AC 39 ms
52,492 KB
testcase_36 AC 43 ms
60,236 KB
testcase_37 AC 38 ms
53,432 KB
testcase_38 AC 39 ms
53,004 KB
testcase_39 AC 38 ms
52,204 KB
testcase_40 AC 38 ms
52,376 KB
testcase_41 AC 43 ms
59,472 KB
testcase_42 AC 39 ms
52,272 KB
testcase_43 AC 39 ms
53,808 KB
testcase_44 AC 38 ms
52,632 KB
testcase_45 AC 38 ms
52,312 KB
testcase_46 AC 37 ms
52,248 KB
testcase_47 AC 42 ms
60,160 KB
testcase_48 AC 38 ms
52,440 KB
testcase_49 AC 40 ms
53,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = []
for n in range(1, N+1):
    ans.append(n*max(M-n, 0))

for i in range(2, len(ans)):
    ans[i] += (1+(i-1))*(i-1)//2
    if i > M:
        diff = i-M
        ans[i] -= (1+diff)*diff//2
        
imos = [0]*N
for m in range(2, M+1):
    for n in range(2, 10**18):
        if m*n > N:
            break
        imos[m*n-1] += m
for i in range(1, N):
    imos[i] += imos[i-1]

for i in range(N):
    ans[i] -= imos[i]

print(max(ans))
0