結果

問題 No.182 新規性の虜
ユーザー LavenderLavender
提出日時 2019-09-02 18:46:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 352 bytes
コンパイル時間 878 ms
コンパイル使用メモリ 66,548 KB
実行使用メモリ 10,400 KB
最終ジャッジ日時 2024-12-16 07:56:27
合計ジャッジ時間 52,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,960 KB
testcase_01 AC 2 ms
10,400 KB
testcase_02 AC 2 ms
8,832 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1,904 ms
5,248 KB
testcase_09 AC 4,954 ms
6,820 KB
testcase_10 AC 3,765 ms
5,248 KB
testcase_11 AC 2,512 ms
5,248 KB
testcase_12 AC 458 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 3,841 ms
5,248 KB
testcase_19 AC 1,958 ms
5,248 KB
testcase_20 AC 716 ms
5,248 KB
testcase_21 TLE -
testcase_22 AC 1,162 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 85 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    int n,count,ans=0;
    cin>>n;
    int a[n];
    for(int i=0;i<n;i++)cin>>a[i];
    for(int i=0;i<n;i++){
        count=0;
        for(int j=0;j<n;j++){
            if(a[i]==a[j]&&i!=j)count++;
        }
        if(count==0)ans++;
    }
    cout<<ans<<endl;
    return 0;
}
0