結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 84 ms
8,064 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 35 ms
5,504 KB
testcase_10 AC 73 ms
7,484 KB
testcase_11 AC 66 ms
7,116 KB
testcase_12 AC 47 ms
6,144 KB
testcase_13 AC 48 ms
6,144 KB
testcase_14 AC 80 ms
7,808 KB
testcase_15 AC 56 ms
6,572 KB
testcase_16 AC 15 ms
5,248 KB
testcase_17 AC 16 ms
5,248 KB
testcase_18 AC 14 ms
5,248 KB
testcase_19 AC 31 ms
5,376 KB
testcase_20 AC 12 ms
5,248 KB
testcase_21 AC 19 ms
5,248 KB
testcase_22 AC 88 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