結果

問題 No.2880 Max Sigma Mod
ユーザー shobonvipshobonvip
提出日時 2024-09-20 01:24:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,558 ms / 3,000 ms
コード長 615 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 199,536 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-20 01:25:31
合計ジャッジ時間 34,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,948 KB
testcase_05 AC 2,013 ms
6,940 KB
testcase_06 AC 1,498 ms
6,944 KB
testcase_07 AC 926 ms
6,944 KB
testcase_08 AC 723 ms
6,940 KB
testcase_09 AC 319 ms
6,944 KB
testcase_10 AC 616 ms
6,940 KB
testcase_11 AC 1,056 ms
6,940 KB
testcase_12 AC 296 ms
6,944 KB
testcase_13 AC 74 ms
6,940 KB
testcase_14 AC 925 ms
6,944 KB
testcase_15 AC 2,413 ms
6,940 KB
testcase_16 AC 2,406 ms
6,940 KB
testcase_17 AC 2,558 ms
6,940 KB
testcase_18 AC 2,376 ms
6,944 KB
testcase_19 AC 2,403 ms
6,940 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 AC 425 ms
6,940 KB
testcase_22 AC 1,024 ms
6,944 KB
testcase_23 AC 14 ms
6,944 KB
testcase_24 AC 528 ms
6,944 KB
testcase_25 AC 1,896 ms
6,940 KB
testcase_26 AC 1,974 ms
6,940 KB
testcase_27 AC 1,950 ms
6,940 KB
testcase_28 AC 2,241 ms
6,944 KB
testcase_29 AC 718 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 1 ms
6,944 KB
testcase_43 AC 1 ms
6,940 KB
testcase_44 AC 2 ms
6,940 KB
testcase_45 AC 2 ms
6,944 KB
testcase_46 AC 1 ms
6,940 KB
testcase_47 AC 1 ms
6,944 KB
testcase_48 AC 1 ms
6,940 KB
testcase_49 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    6 | bool chmin(auto &a, auto b){ return a > b ? a = b, 1 : 0; }
      |            ^~~~
main.cpp:6:21: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    6 | bool chmin(auto &a, auto b){ return a > b ? a = b, 1 : 0; }
      |                     ^~~~
main.cpp:7:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    7 | bool chmax(auto &a, auto b){ return a < b ? a = b, 1 : 0; }
      |            ^~~~
main.cpp:7:21: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    7 | bool chmax(auto &a, auto b){ return a < b ? a = b, 1 : 0; }
      |                     ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,s,n) for (int i = (int)(s); i < (int)(n); i++)
#define all(v) begin(v),end(v)
using namespace std;
using ll = long long;
bool chmin(auto &a, auto b){ return a > b ? a = b, 1 : 0; }
bool chmax(auto &a, auto b){ return a < b ? a = b, 1 : 0; }
int main(){
    cin.tie(0)->sync_with_stdio(0);

	int n, m; cin >> n >> m;
	ll ans = 0;
	for (int i=1;i<=n;i++){
		ll tmp = (ll)m*i;
		int x=i;
		while(x>0){
			int v=i/x;
			int y=i/(v+1);

			int l=min(m,y)+1;
			int r=min(m,x)+1;
			tmp -= (ll)v*((ll)r*(r-1)/2-(ll)l*(l-1)/2);
			x=y;
		}
		chmax(ans,tmp);
	}
	cout << ans << '\n';
}
0