結果

問題 No.1285 ゴミ捨て
ユーザー nawawannawawan
提出日時 2020-11-13 21:35:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 91,832 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-05-06 14:28:30
合計ジャッジ時間 2,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 66 ms
12,928 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 26 ms
7,424 KB
testcase_10 AC 56 ms
11,648 KB
testcase_11 AC 51 ms
11,008 KB
testcase_12 AC 37 ms
8,960 KB
testcase_13 AC 37 ms
8,960 KB
testcase_14 AC 64 ms
12,288 KB
testcase_15 AC 44 ms
9,728 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 10 ms
5,376 KB
testcase_19 AC 25 ms
7,060 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 14 ms
5,632 KB
testcase_22 AC 70 ms
13,440 KB
testcase_23 AC 70 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <map>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin >> N;
    vector<long long> A(N);
    for(int i = 0; i < N; i++) cin >> A[i];
    sort(A.begin(), A.end());
    map<int, int> m;
    for(int i = 0; i < N; i++) m[A[i]]++;
    int ans = 0;
    for(int i = 0; i < N; i++){
        ans = max(ans, m[A[i]] + m[A[i] - 1]);
    }
    cout << ans << endl;
}
0