結果

問題 No.2880 Max Sigma Mod
ユーザー miya145592miya145592
提出日時 2024-09-09 00:02:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 3,000 ms
コード長 234 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 88,156 KB
最終ジャッジ日時 2024-09-09 00:02:22
合計ジャッジ時間 4,913 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,584 KB
testcase_01 AC 42 ms
58,416 KB
testcase_02 AC 43 ms
59,308 KB
testcase_03 AC 44 ms
58,756 KB
testcase_04 AC 41 ms
57,516 KB
testcase_05 AC 75 ms
80,932 KB
testcase_06 AC 67 ms
76,624 KB
testcase_07 AC 86 ms
76,456 KB
testcase_08 AC 64 ms
73,828 KB
testcase_09 AC 57 ms
70,060 KB
testcase_10 AC 55 ms
68,100 KB
testcase_11 AC 69 ms
79,920 KB
testcase_12 AC 52 ms
65,936 KB
testcase_13 AC 53 ms
69,168 KB
testcase_14 AC 62 ms
72,116 KB
testcase_15 AC 81 ms
87,108 KB
testcase_16 AC 80 ms
88,156 KB
testcase_17 AC 80 ms
87,944 KB
testcase_18 AC 78 ms
86,848 KB
testcase_19 AC 79 ms
88,052 KB
testcase_20 AC 53 ms
67,912 KB
testcase_21 AC 60 ms
73,660 KB
testcase_22 AC 72 ms
78,088 KB
testcase_23 AC 50 ms
66,888 KB
testcase_24 AC 61 ms
74,716 KB
testcase_25 AC 70 ms
79,008 KB
testcase_26 AC 75 ms
83,952 KB
testcase_27 AC 72 ms
79,792 KB
testcase_28 AC 73 ms
82,960 KB
testcase_29 AC 62 ms
71,260 KB
testcase_30 AC 38 ms
52,328 KB
testcase_31 AC 39 ms
53,744 KB
testcase_32 AC 43 ms
59,480 KB
testcase_33 AC 39 ms
52,872 KB
testcase_34 AC 39 ms
52,548 KB
testcase_35 AC 39 ms
52,964 KB
testcase_36 AC 44 ms
59,440 KB
testcase_37 AC 38 ms
52,756 KB
testcase_38 AC 38 ms
52,488 KB
testcase_39 AC 38 ms
52,204 KB
testcase_40 AC 41 ms
52,156 KB
testcase_41 AC 43 ms
58,540 KB
testcase_42 AC 41 ms
52,756 KB
testcase_43 AC 38 ms
53,356 KB
testcase_44 AC 39 ms
52,268 KB
testcase_45 AC 38 ms
53,216 KB
testcase_46 AC 39 ms
52,556 KB
testcase_47 AC 43 ms
58,296 KB
testcase_48 AC 39 ms
53,316 KB
testcase_49 AC 41 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
dp = [M for i in range(N+1)]
for i in range(1, M+1):
    for j in range(i, N+1, i):
        dp[j] -= i
S = [0]
for d in dp[1:]:
    S.append(S[-1]+d)
print(max(S))
0