結果

問題 No.2880 Max Sigma Mod
ユーザー sortA0329sortA0329
提出日時 2024-08-02 08:45:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 3,000 ms
コード長 377 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 73,096 KB
最終ジャッジ日時 2024-08-02 08:45:07
合計ジャッジ時間 4,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,220 KB
testcase_01 AC 41 ms
60,868 KB
testcase_02 AC 41 ms
59,316 KB
testcase_03 AC 40 ms
58,628 KB
testcase_04 AC 39 ms
58,796 KB
testcase_05 AC 58 ms
66,976 KB
testcase_06 AC 54 ms
64,832 KB
testcase_07 AC 60 ms
67,872 KB
testcase_08 AC 54 ms
66,172 KB
testcase_09 AC 50 ms
64,740 KB
testcase_10 AC 48 ms
62,248 KB
testcase_11 AC 59 ms
70,328 KB
testcase_12 AC 46 ms
62,144 KB
testcase_13 AC 47 ms
64,544 KB
testcase_14 AC 52 ms
64,176 KB
testcase_15 AC 64 ms
71,712 KB
testcase_16 AC 64 ms
72,048 KB
testcase_17 AC 64 ms
72,192 KB
testcase_18 AC 63 ms
73,096 KB
testcase_19 AC 65 ms
71,184 KB
testcase_20 AC 49 ms
65,376 KB
testcase_21 AC 54 ms
68,336 KB
testcase_22 AC 55 ms
68,100 KB
testcase_23 AC 46 ms
63,624 KB
testcase_24 AC 54 ms
68,376 KB
testcase_25 AC 57 ms
66,008 KB
testcase_26 AC 62 ms
70,808 KB
testcase_27 AC 57 ms
67,356 KB
testcase_28 AC 57 ms
67,076 KB
testcase_29 AC 51 ms
64,616 KB
testcase_30 AC 36 ms
53,152 KB
testcase_31 AC 36 ms
52,596 KB
testcase_32 AC 43 ms
58,540 KB
testcase_33 AC 37 ms
52,336 KB
testcase_34 AC 38 ms
52,124 KB
testcase_35 AC 36 ms
51,944 KB
testcase_36 AC 44 ms
58,352 KB
testcase_37 AC 35 ms
53,308 KB
testcase_38 AC 37 ms
54,228 KB
testcase_39 AC 36 ms
52,584 KB
testcase_40 AC 36 ms
52,768 KB
testcase_41 AC 44 ms
59,848 KB
testcase_42 AC 35 ms
53,228 KB
testcase_43 AC 36 ms
53,200 KB
testcase_44 AC 35 ms
52,700 KB
testcase_45 AC 35 ms
52,632 KB
testcase_46 AC 36 ms
53,272 KB
testcase_47 AC 44 ms
59,176 KB
testcase_48 AC 36 ms
52,220 KB
testcase_49 AC 41 ms
60,068 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