結果

問題 No.1285 ゴミ捨て
ユーザー 👑 NachiaNachia
提出日時 2020-11-13 21:22:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 423 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 177,300 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-06 14:22:23
合計ジャッジ時間 3,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 77 ms
8,192 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 31 ms
5,472 KB
testcase_10 AC 70 ms
7,440 KB
testcase_11 AC 62 ms
7,240 KB
testcase_12 AC 43 ms
6,272 KB
testcase_13 AC 47 ms
6,400 KB
testcase_14 AC 71 ms
7,808 KB
testcase_15 AC 50 ms
6,652 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 28 ms
5,376 KB
testcase_20 AC 12 ms
5,376 KB
testcase_21 AC 17 ms
5,376 KB
testcase_22 AC 81 ms
8,320 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)


int main() {

	int N; cin >> N;
	vector<int> B(N); rep(i, N) cin >> B[i];
	sort(B.begin(), B.end());
	rep(i, N) B[i] -= i;
	map<int, int> A;
	rep(i, N) { int a = B[i]; A[a] = A[a] + 1; }
	int ans = 0;
	for (auto p : A) ans = max(ans, p.second);
	cout << ans << endl;

	return 0;
}
0