結果

問題 No.2880 Max Sigma Mod
ユーザー Iroha_3856Iroha_3856
提出日時 2024-10-07 21:26:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 3,000 ms
コード長 229 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 72,884 KB
最終ジャッジ日時 2024-10-07 21:26:56
合計ジャッジ時間 4,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,836 KB
testcase_01 AC 46 ms
58,704 KB
testcase_02 AC 42 ms
59,624 KB
testcase_03 AC 42 ms
58,620 KB
testcase_04 AC 42 ms
57,916 KB
testcase_05 AC 78 ms
66,688 KB
testcase_06 AC 57 ms
64,784 KB
testcase_07 AC 58 ms
67,364 KB
testcase_08 AC 54 ms
64,668 KB
testcase_09 AC 52 ms
64,820 KB
testcase_10 AC 50 ms
61,940 KB
testcase_11 AC 60 ms
70,000 KB
testcase_12 AC 48 ms
61,496 KB
testcase_13 AC 50 ms
64,332 KB
testcase_14 AC 53 ms
63,344 KB
testcase_15 AC 67 ms
71,708 KB
testcase_16 AC 67 ms
72,884 KB
testcase_17 AC 66 ms
72,668 KB
testcase_18 AC 66 ms
72,372 KB
testcase_19 AC 68 ms
72,296 KB
testcase_20 AC 51 ms
66,496 KB
testcase_21 AC 56 ms
68,436 KB
testcase_22 AC 57 ms
68,200 KB
testcase_23 AC 47 ms
63,264 KB
testcase_24 AC 56 ms
67,532 KB
testcase_25 AC 59 ms
66,172 KB
testcase_26 AC 64 ms
70,456 KB
testcase_27 AC 59 ms
66,896 KB
testcase_28 AC 62 ms
67,500 KB
testcase_29 AC 51 ms
63,424 KB
testcase_30 AC 36 ms
52,328 KB
testcase_31 AC 38 ms
52,028 KB
testcase_32 AC 46 ms
59,416 KB
testcase_33 AC 38 ms
52,304 KB
testcase_34 AC 38 ms
52,968 KB
testcase_35 AC 38 ms
51,892 KB
testcase_36 AC 46 ms
58,736 KB
testcase_37 AC 38 ms
52,480 KB
testcase_38 AC 38 ms
53,460 KB
testcase_39 AC 37 ms
52,564 KB
testcase_40 AC 38 ms
52,500 KB
testcase_41 AC 46 ms
59,724 KB
testcase_42 AC 38 ms
52,400 KB
testcase_43 AC 38 ms
52,892 KB
testcase_44 AC 37 ms
52,260 KB
testcase_45 AC 38 ms
52,712 KB
testcase_46 AC 38 ms
52,016 KB
testcase_47 AC 47 ms
59,304 KB
testcase_48 AC 38 ms
52,364 KB
testcase_49 AC 42 ms
58,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

diff = [M] * (N + 1)

for i in range(1, M + 1):
    for j in range(0, N + 1, i):
        diff[j] -= i

res = [0] * (N + 1)
for x in range(N):
    res[x + 1] = res[x] + diff[x + 1]
print(max(res))
0