Submission #1595598


Source Code Expand

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main() {
    int N; cin >> N;
    vector<int> A(N, 0);
    for (int i = 0; i < N; i++) cin >> A[i];
    const int LIM = (int)(1e5 + 5);
    vector<int> cnt(LIM, 0);
    for (auto a : A) {
        for (int j = -1; j <= 1; j++) {
            int b = a + j;
            if (b < 0 || b >= LIM) continue;
            cnt[b] += 1;
        }
    }
    cout << *max_element(cnt.begin(), cnt.end()) << endl;
}

Submission Info

Submission Time
Task C - Together
User izuru
Language C++14 (Clang 3.8.0)
Score 300
Code Size 506 Byte
Status AC
Exec Time 80 ms
Memory 1272 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 9
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt
Case Name Status Exec Time Memory
0_000.txt AC 7 ms 1272 KB
0_001.txt AC 1 ms 640 KB
0_002.txt AC 1 ms 640 KB
1_003.txt AC 1 ms 640 KB
1_004.txt AC 47 ms 1024 KB
1_005.txt AC 79 ms 1024 KB
1_006.txt AC 79 ms 1024 KB
1_007.txt AC 79 ms 1024 KB
1_008.txt AC 80 ms 1024 KB