結果

問題 No.2880 Max Sigma Mod
ユーザー tikuwa_tikuwa_
提出日時 2024-08-24 13:40:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 3,000 ms
コード長 217 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 73,864 KB
最終ジャッジ日時 2024-08-24 13:40:18
合計ジャッジ時間 4,329 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,652 KB
testcase_01 AC 40 ms
58,620 KB
testcase_02 AC 40 ms
59,572 KB
testcase_03 AC 39 ms
59,312 KB
testcase_04 AC 38 ms
58,380 KB
testcase_05 AC 57 ms
68,376 KB
testcase_06 AC 57 ms
65,972 KB
testcase_07 AC 57 ms
70,112 KB
testcase_08 AC 57 ms
67,968 KB
testcase_09 AC 50 ms
66,664 KB
testcase_10 AC 44 ms
62,244 KB
testcase_11 AC 57 ms
71,952 KB
testcase_12 AC 45 ms
62,544 KB
testcase_13 AC 49 ms
68,168 KB
testcase_14 AC 54 ms
64,572 KB
testcase_15 AC 63 ms
73,864 KB
testcase_16 AC 63 ms
72,324 KB
testcase_17 AC 64 ms
73,344 KB
testcase_18 AC 65 ms
72,736 KB
testcase_19 AC 68 ms
72,516 KB
testcase_20 AC 50 ms
67,504 KB
testcase_21 AC 52 ms
69,568 KB
testcase_22 AC 56 ms
69,660 KB
testcase_23 AC 46 ms
65,112 KB
testcase_24 AC 52 ms
70,104 KB
testcase_25 AC 55 ms
66,416 KB
testcase_26 AC 60 ms
71,376 KB
testcase_27 AC 53 ms
66,704 KB
testcase_28 AC 59 ms
67,648 KB
testcase_29 AC 48 ms
64,800 KB
testcase_30 AC 34 ms
52,940 KB
testcase_31 AC 36 ms
52,756 KB
testcase_32 AC 36 ms
59,192 KB
testcase_33 AC 34 ms
52,492 KB
testcase_34 AC 35 ms
52,472 KB
testcase_35 AC 34 ms
52,568 KB
testcase_36 AC 36 ms
58,492 KB
testcase_37 AC 33 ms
52,568 KB
testcase_38 AC 34 ms
52,328 KB
testcase_39 AC 32 ms
53,360 KB
testcase_40 AC 33 ms
51,944 KB
testcase_41 AC 38 ms
58,600 KB
testcase_42 AC 32 ms
53,040 KB
testcase_43 AC 33 ms
52,956 KB
testcase_44 AC 34 ms
53,616 KB
testcase_45 AC 34 ms
53,692 KB
testcase_46 AC 36 ms
52,132 KB
testcase_47 AC 38 ms
58,300 KB
testcase_48 AC 33 ms
53,260 KB
testcase_49 AC 35 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
imos=[0 for _ in range(N)]
for i in range(1,M+1):
    for j in range(i,N+1,i):
        imos[j-1]-=i
for i in range(N-1) : imos[i+1]+=imos[i]
print(max([imos[i]+M*(i+1) for i in range(N)]))
0