結果

問題 No.2880 Max Sigma Mod
ユーザー KudeKude
提出日時 2024-09-08 12:38:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 3,000 ms
コード長 225 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 74,984 KB
最終ジャッジ日時 2024-09-08 12:38:18
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,752 KB
testcase_01 AC 42 ms
59,388 KB
testcase_02 AC 41 ms
59,512 KB
testcase_03 AC 39 ms
58,812 KB
testcase_04 AC 38 ms
58,968 KB
testcase_05 AC 65 ms
69,084 KB
testcase_06 AC 55 ms
66,940 KB
testcase_07 AC 58 ms
70,020 KB
testcase_08 AC 56 ms
69,024 KB
testcase_09 AC 53 ms
67,096 KB
testcase_10 AC 47 ms
63,308 KB
testcase_11 AC 59 ms
73,492 KB
testcase_12 AC 45 ms
62,212 KB
testcase_13 AC 49 ms
67,956 KB
testcase_14 AC 56 ms
66,008 KB
testcase_15 AC 66 ms
73,868 KB
testcase_16 AC 64 ms
74,192 KB
testcase_17 AC 67 ms
73,480 KB
testcase_18 AC 67 ms
73,992 KB
testcase_19 AC 71 ms
74,984 KB
testcase_20 AC 50 ms
66,944 KB
testcase_21 AC 54 ms
70,556 KB
testcase_22 AC 56 ms
71,672 KB
testcase_23 AC 48 ms
64,788 KB
testcase_24 AC 56 ms
71,244 KB
testcase_25 AC 58 ms
68,800 KB
testcase_26 AC 62 ms
73,260 KB
testcase_27 AC 59 ms
68,636 KB
testcase_28 AC 61 ms
69,840 KB
testcase_29 AC 51 ms
65,876 KB
testcase_30 AC 37 ms
52,640 KB
testcase_31 AC 37 ms
53,012 KB
testcase_32 AC 40 ms
58,720 KB
testcase_33 AC 37 ms
52,200 KB
testcase_34 AC 34 ms
53,356 KB
testcase_35 AC 37 ms
52,072 KB
testcase_36 AC 40 ms
59,048 KB
testcase_37 AC 36 ms
53,392 KB
testcase_38 AC 35 ms
54,040 KB
testcase_39 AC 38 ms
52,536 KB
testcase_40 AC 38 ms
52,612 KB
testcase_41 AC 41 ms
59,296 KB
testcase_42 AC 34 ms
52,568 KB
testcase_43 AC 34 ms
52,428 KB
testcase_44 AC 36 ms
52,460 KB
testcase_45 AC 35 ms
52,928 KB
testcase_46 AC 35 ms
52,016 KB
testcase_47 AC 38 ms
59,788 KB
testcase_48 AC 35 ms
52,192 KB
testcase_49 AC 36 ms
53,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
d = [0] * (n + 1)
for i in range(1, m + 1):
    for j in range(i, n + 1, i):
        d[j] += i
for i in range(n):
    d[i+1] += d[i]
ans = max(x * m - d[x] for x in range(1, n + 1))
print(ans)
0