結果

問題 No.182 新規性の虜
ユーザー r2en_r2en_
提出日時 2017-07-06 02:53:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 402 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 68,288 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-10-05 20:26:00
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,196 KB
testcase_01 AC 4 ms
7,108 KB
testcase_02 AC 4 ms
7,156 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 4 ms
7,124 KB
testcase_18 AC 22 ms
7,524 KB
testcase_19 AC 17 ms
7,276 KB
testcase_20 AC 12 ms
7,244 KB
testcase_21 AC 25 ms
7,424 KB
testcase_22 AC 13 ms
7,248 KB
testcase_23 AC 4 ms
7,104 KB
testcase_24 AC 32 ms
7,492 KB
testcase_25 AC 20 ms
7,552 KB
testcase_26 RE -
testcase_27 AC 4 ms
7,148 KB
evil01.txt RE -
evil02.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n); i++)
#define rep2(i,n) for(int i = 1; i <= (n); i++)

int main(){
    int cnt = 0;
    vector<int>v(1000000,0);

    int n = 0; cin >> n;
    vector<int>a(n,0);

    rep(i,n){ cin >> a[i]; }
    rep(i,n){ v[a[i]] += 1; }
    rep2(i,n){ if(v[i] == 1){cnt+=1;} }

    cout << cnt << endl;
    return 0;
}
0