結果

問題 No.182 新規性の虜
ユーザー hamrayhamray
提出日時 2017-11-18 13:44:35
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 380 bytes
コンパイル時間 1,697 ms
コンパイル使用メモリ 162,652 KB
実行使用メモリ 10,660 KB
最終ジャッジ日時 2024-11-25 11:32:29
合計ジャッジ時間 89,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,016 KB
testcase_01 AC 1 ms
10,020 KB
testcase_02 AC 1 ms
10,016 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 AC 755 ms
6,820 KB
testcase_19 AC 537 ms
6,820 KB
testcase_20 AC 329 ms
6,816 KB
testcase_21 AC 865 ms
6,820 KB
testcase_22 AC 415 ms
6,816 KB
testcase_23 AC 1 ms
6,816 KB
testcase_24 TLE -
testcase_25 AC 17 ms
6,816 KB
testcase_26 TLE -
testcase_27 AC 2 ms
6,820 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define NUM 11
int main(void){
    int N; cin >> N;
    int A, cnt = 0;
    vector<int> v;
    for(int i=0; i<N; i++){
        cin >> A;
        v.push_back(A);
    }
    sort(v.begin(), v.end());
    for(int i=1; i<=v[N-1]; i++){
        if(count(v.begin(), v.end(), i) == 1) cnt++;
    }
    cout << cnt << endl;
    return 0;
}
    
0