結果

問題 No.2880 Max Sigma Mod
ユーザー vwxyzvwxyz
提出日時 2024-09-08 15:52:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 843 ms / 3,000 ms
コード長 185 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-09-08 15:52:17
合計ジャッジ時間 14,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 664 ms
17,152 KB
testcase_06 AC 465 ms
16,000 KB
testcase_07 AC 384 ms
14,592 KB
testcase_08 AC 301 ms
13,952 KB
testcase_09 AC 191 ms
12,544 KB
testcase_10 AC 187 ms
12,800 KB
testcase_11 AC 433 ms
15,104 KB
testcase_12 AC 127 ms
12,032 KB
testcase_13 AC 111 ms
11,392 KB
testcase_14 AC 325 ms
14,592 KB
testcase_15 AC 829 ms
18,432 KB
testcase_16 AC 843 ms
18,560 KB
testcase_17 AC 806 ms
18,432 KB
testcase_18 AC 745 ms
18,560 KB
testcase_19 AC 792 ms
18,560 KB
testcase_20 AC 90 ms
10,880 KB
testcase_21 AC 250 ms
13,184 KB
testcase_22 AC 436 ms
14,976 KB
testcase_23 AC 66 ms
10,880 KB
testcase_24 AC 296 ms
13,568 KB
testcase_25 AC 577 ms
16,896 KB
testcase_26 AC 685 ms
17,536 KB
testcase_27 AC 600 ms
17,152 KB
testcase_28 AC 664 ms
17,792 KB
testcase_29 AC 279 ms
14,208 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 92 ms
10,752 KB
testcase_33 AC 30 ms
10,880 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 29 ms
10,752 KB
testcase_36 AC 93 ms
10,752 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 30 ms
10,752 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 92 ms
10,752 KB
testcase_42 AC 31 ms
10,752 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 29 ms
10,752 KB
testcase_45 AC 29 ms
10,752 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 93 ms
10,752 KB
testcase_48 AC 29 ms
10,752 KB
testcase_49 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
ans=0
s=0
D=[0]*(N+1)
for m in range(1,M+1):
    for n in range(m,N+1,m):
        D[n]+=m
for n in range(1,N+1):
    s+=M-D[n]
    ans=max(ans,s)
print(ans)
0