結果

問題 No.2880 Max Sigma Mod
ユーザー detteiuudetteiuu
提出日時 2024-09-08 16:52:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 89,524 KB
最終ジャッジ日時 2024-09-08 16:52:36
合計ジャッジ時間 4,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 38 ms
52,828 KB
testcase_02 AC 44 ms
60,464 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 65 ms
78,464 KB
testcase_08 AC 69 ms
76,120 KB
testcase_09 AC 57 ms
71,888 KB
testcase_10 WA -
testcase_11 AC 64 ms
81,744 KB
testcase_12 WA -
testcase_13 AC 52 ms
71,704 KB
testcase_14 WA -
testcase_15 AC 80 ms
89,240 KB
testcase_16 AC 80 ms
89,524 KB
testcase_17 AC 79 ms
89,328 KB
testcase_18 AC 77 ms
89,044 KB
testcase_19 AC 80 ms
89,460 KB
testcase_20 AC 53 ms
70,812 KB
testcase_21 AC 60 ms
76,716 KB
testcase_22 AC 67 ms
80,048 KB
testcase_23 AC 55 ms
68,148 KB
testcase_24 AC 62 ms
78,696 KB
testcase_25 WA -
testcase_26 AC 74 ms
86,872 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,692 KB
testcase_31 AC 35 ms
52,756 KB
testcase_32 AC 39 ms
59,100 KB
testcase_33 AC 35 ms
52,756 KB
testcase_34 AC 36 ms
52,140 KB
testcase_35 AC 37 ms
52,144 KB
testcase_36 AC 39 ms
58,660 KB
testcase_37 WA -
testcase_38 AC 35 ms
53,424 KB
testcase_39 AC 35 ms
53,124 KB
testcase_40 AC 35 ms
52,552 KB
testcase_41 AC 39 ms
59,656 KB
testcase_42 WA -
testcase_43 AC 37 ms
52,736 KB
testcase_44 AC 35 ms
53,308 KB
testcase_45 AC 36 ms
52,052 KB
testcase_46 AC 35 ms
52,816 KB
testcase_47 AC 39 ms
59,160 KB
testcase_48 AC 35 ms
53,160 KB
testcase_49 AC 37 ms
52,892 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

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