結果

問題 No.182 新規性の虜
ユーザー LavenderLavender
提出日時 2019-09-03 07:25:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 288 bytes
コンパイル時間 1,317 ms
コンパイル使用メモリ 169,696 KB
実行使用メモリ 10,656 KB
最終ジャッジ日時 2024-06-02 08:31:49
合計ジャッジ時間 31,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 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 1 ms
5,376 KB
testcase_08 AC 1,658 ms
5,376 KB
testcase_09 AC 4,412 ms
5,376 KB
testcase_10 AC 3,279 ms
5,376 KB
testcase_11 AC 2,230 ms
5,376 KB
testcase_12 AC 402 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3,407 ms
5,376 KB
testcase_19 AC 1,709 ms
5,376 KB
testcase_20 AC 638 ms
5,376 KB
testcase_21 AC 4,435 ms
5,376 KB
testcase_22 AC 1,031 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n;
    cin>>n;
    vector<int> v(n);
    for(int i=0;i<n;i++)cin>>v[i];
    int c,ans=0;
    for(int i=0;i<n;i++){
        c=count(v.begin(),v.end(),v[i]);
        if(c==1)ans++;
    }
    cout<<ans<<endl;
    return 0;
}
0