結果

問題 No.1285 ゴミ捨て
ユーザー ぷらぷら
提出日時 2020-11-13 21:31:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 177,108 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-11-28 21:43:00
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 164 ms
22,016 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 62 ms
11,392 KB
testcase_10 AC 138 ms
19,584 KB
testcase_11 AC 131 ms
18,176 KB
testcase_12 AC 86 ms
14,336 KB
testcase_13 AC 85 ms
14,208 KB
testcase_14 AC 153 ms
20,992 KB
testcase_15 AC 103 ms
15,872 KB
testcase_16 AC 25 ms
6,820 KB
testcase_17 AC 25 ms
7,040 KB
testcase_18 AC 24 ms
6,816 KB
testcase_19 AC 55 ms
10,496 KB
testcase_20 AC 22 ms
6,820 KB
testcase_21 AC 32 ms
7,936 KB
testcase_22 AC 185 ms
22,784 KB
testcase_23 AC 190 ms
22,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef pair<int,int> P;
int INF = 3e18;
int mod = 1e9+7;
int dx[4] = {1, 0,-1, 0};
int dy[4] = {0, 1, 0,-1};
signed main() {
    int N;
    cin >> N;
    vector<int>A(N);
    map<int,int>Mp;
    int ans = 0;
    for(int i = 0; i < N; i++) {
        cin >> A[i];
        Mp[A[i]]++;
        ans = max(ans,Mp[A[i]]+Mp[A[i]+1]);
        ans = max(ans,Mp[A[i]]+Mp[A[i]-1]);
    }
    cout << ans << endl;
}
0