結果

問題 No.2880 Max Sigma Mod
ユーザー wymwym
提出日時 2024-09-18 00:12:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 3,000 ms
コード長 653 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 170,204 KB
実行使用メモリ 24,700 KB
最終ジャッジ日時 2024-09-18 00:12:48
合計ジャッジ時間 6,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,140 KB
testcase_01 AC 5 ms
8,120 KB
testcase_02 AC 4 ms
8,064 KB
testcase_03 AC 5 ms
8,088 KB
testcase_04 AC 5 ms
8,028 KB
testcase_05 AC 168 ms
22,316 KB
testcase_06 AC 109 ms
19,456 KB
testcase_07 AC 62 ms
16,284 KB
testcase_08 AC 48 ms
14,868 KB
testcase_09 AC 25 ms
12,016 KB
testcase_10 AC 33 ms
13,708 KB
testcase_11 AC 77 ms
17,364 KB
testcase_12 AC 20 ms
11,664 KB
testcase_13 AC 11 ms
9,448 KB
testcase_14 AC 66 ms
16,488 KB
testcase_15 AC 196 ms
24,612 KB
testcase_16 AC 208 ms
24,532 KB
testcase_17 AC 205 ms
24,680 KB
testcase_18 AC 218 ms
24,604 KB
testcase_19 AC 213 ms
24,700 KB
testcase_20 AC 7 ms
8,536 KB
testcase_21 AC 33 ms
13,008 KB
testcase_22 AC 65 ms
17,164 KB
testcase_23 AC 6 ms
8,608 KB
testcase_24 AC 38 ms
13,856 KB
testcase_25 AC 153 ms
22,000 KB
testcase_26 AC 167 ms
22,480 KB
testcase_27 AC 172 ms
22,312 KB
testcase_28 AC 180 ms
23,940 KB
testcase_29 AC 49 ms
15,272 KB
testcase_30 AC 5 ms
8,048 KB
testcase_31 AC 4 ms
8,120 KB
testcase_32 AC 5 ms
8,056 KB
testcase_33 AC 5 ms
8,224 KB
testcase_34 AC 4 ms
8,060 KB
testcase_35 AC 5 ms
8,132 KB
testcase_36 AC 5 ms
8,224 KB
testcase_37 AC 3 ms
8,192 KB
testcase_38 AC 4 ms
8,200 KB
testcase_39 AC 4 ms
8,052 KB
testcase_40 AC 4 ms
8,072 KB
testcase_41 AC 5 ms
8,096 KB
testcase_42 AC 4 ms
8,188 KB
testcase_43 AC 4 ms
8,040 KB
testcase_44 AC 5 ms
8,124 KB
testcase_45 AC 5 ms
8,188 KB
testcase_46 AC 5 ms
8,092 KB
testcase_47 AC 4 ms
8,020 KB
testcase_48 AC 5 ms
8,120 KB
testcase_49 AC 4 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#pragma GCC optimize("O3,unroll-loops")
//#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
//#pragma GCC optimize("trapv")
#include <bits/stdc++.h>
//#define int long long 
using namespace std;

const int N = 2e5+5;
vector<int> start[N];
signed main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	int n, m;
	cin >> n >> m;
	for(int i=1; i<=m; i++)
	{
		for(int j=i; j<=n; j+=i)
			start[j].push_back(i);
	}

	long long now = 0, ans = 0;
	for(int i=1; i<=n; i++)
	{
		for(int j: start[i])
			now -= j-1;
		now += m - start[i].size();
		ans = max(ans, now);
		//cout << i << ": " << start[i].size() << " " << now << "\n";
	}
	cout << ans << "\n";

}
0