結果

問題 No.2880 Max Sigma Mod
ユーザー sortA0329sortA0329
提出日時 2024-08-02 08:45:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 742 ms / 3,000 ms
コード長 377 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,416 KB
最終ジャッジ日時 2024-08-02 08:45:42
合計ジャッジ時間 13,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 536 ms
25,600 KB
testcase_06 AC 421 ms
21,760 KB
testcase_07 AC 339 ms
19,840 KB
testcase_08 AC 269 ms
18,176 KB
testcase_09 AC 176 ms
15,104 KB
testcase_10 AC 170 ms
16,768 KB
testcase_11 AC 422 ms
21,248 KB
testcase_12 AC 107 ms
14,464 KB
testcase_13 AC 114 ms
12,288 KB
testcase_14 AC 308 ms
18,944 KB
testcase_15 AC 732 ms
28,288 KB
testcase_16 AC 714 ms
28,416 KB
testcase_17 AC 717 ms
28,288 KB
testcase_18 AC 742 ms
28,288 KB
testcase_19 AC 699 ms
28,416 KB
testcase_20 AC 98 ms
11,264 KB
testcase_21 AC 266 ms
16,512 KB
testcase_22 AC 370 ms
20,864 KB
testcase_23 AC 68 ms
11,136 KB
testcase_24 AC 283 ms
17,536 KB
testcase_25 AC 529 ms
23,936 KB
testcase_26 AC 628 ms
26,112 KB
testcase_27 AC 553 ms
25,600 KB
testcase_28 AC 612 ms
27,264 KB
testcase_29 AC 250 ms
17,664 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 26 ms
10,624 KB
testcase_32 AC 120 ms
10,624 KB
testcase_33 AC 27 ms
10,752 KB
testcase_34 AC 26 ms
10,624 KB
testcase_35 AC 27 ms
10,624 KB
testcase_36 AC 108 ms
10,624 KB
testcase_37 AC 26 ms
10,752 KB
testcase_38 AC 28 ms
10,624 KB
testcase_39 AC 27 ms
10,624 KB
testcase_40 AC 27 ms
10,624 KB
testcase_41 AC 111 ms
10,624 KB
testcase_42 AC 26 ms
10,624 KB
testcase_43 AC 25 ms
10,624 KB
testcase_44 AC 25 ms
10,624 KB
testcase_45 AC 26 ms
10,624 KB
testcase_46 AC 25 ms
10,624 KB
testcase_47 AC 109 ms
10,624 KB
testcase_48 AC 27 ms
10,624 KB
testcase_49 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 入力を受け取る
N, M = map(int, input().split())

# 「増加分」を保持する配列
diff = [M] * (N + 1)

for i in range(1, M + 1):
    # iの倍数は増加分に-iの寄与をもたらす
    for j in range(0, N + 1, i):
        diff[j] -= i

# sum(x mod i) の計算
res = [0] * (N + 1)
for x in range(N):
    res[x + 1] = res[x] + diff[x + 1]

print(max(res))
0