結果

問題 No.2880 Max Sigma Mod
ユーザー hiryuNhiryuN
提出日時 2024-09-08 13:21:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 3,000 ms
コード長 174 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 74,512 KB
最終ジャッジ日時 2024-09-08 13:21:22
合計ジャッジ時間 4,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,192 KB
testcase_01 AC 40 ms
59,540 KB
testcase_02 AC 39 ms
59,368 KB
testcase_03 AC 39 ms
58,904 KB
testcase_04 AC 38 ms
58,252 KB
testcase_05 AC 60 ms
68,796 KB
testcase_06 AC 56 ms
66,836 KB
testcase_07 AC 57 ms
68,584 KB
testcase_08 AC 54 ms
67,432 KB
testcase_09 AC 51 ms
64,644 KB
testcase_10 AC 51 ms
62,200 KB
testcase_11 AC 59 ms
71,624 KB
testcase_12 AC 47 ms
61,392 KB
testcase_13 AC 49 ms
64,856 KB
testcase_14 AC 52 ms
64,860 KB
testcase_15 AC 66 ms
73,300 KB
testcase_16 AC 67 ms
74,512 KB
testcase_17 AC 65 ms
73,512 KB
testcase_18 AC 66 ms
74,508 KB
testcase_19 AC 66 ms
73,636 KB
testcase_20 AC 50 ms
65,684 KB
testcase_21 AC 54 ms
68,912 KB
testcase_22 AC 56 ms
68,520 KB
testcase_23 AC 46 ms
64,868 KB
testcase_24 AC 54 ms
67,752 KB
testcase_25 AC 58 ms
68,044 KB
testcase_26 AC 66 ms
71,440 KB
testcase_27 AC 57 ms
67,328 KB
testcase_28 AC 58 ms
68,484 KB
testcase_29 AC 49 ms
64,880 KB
testcase_30 AC 34 ms
52,204 KB
testcase_31 AC 35 ms
53,284 KB
testcase_32 AC 44 ms
60,524 KB
testcase_33 AC 36 ms
52,028 KB
testcase_34 AC 34 ms
52,152 KB
testcase_35 AC 37 ms
53,312 KB
testcase_36 AC 43 ms
59,196 KB
testcase_37 AC 36 ms
52,804 KB
testcase_38 AC 36 ms
52,976 KB
testcase_39 AC 37 ms
53,568 KB
testcase_40 AC 35 ms
52,068 KB
testcase_41 AC 44 ms
59,792 KB
testcase_42 AC 36 ms
52,156 KB
testcase_43 AC 36 ms
53,368 KB
testcase_44 AC 35 ms
54,072 KB
testcase_45 AC 35 ms
52,804 KB
testcase_46 AC 36 ms
52,344 KB
testcase_47 AC 45 ms
59,284 KB
testcase_48 AC 36 ms
53,352 KB
testcase_49 AC 42 ms
58,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
D=[0]+[m]*n
for i in range(1,m+1):
    for j in range(0,n+1,i):
        D[j]-=i
D=D[1:]
for i in range(1,len(D)):
    D[i]+=D[i-1]
print(max(D))
0