結果

問題 No.182 新規性の虜
ユーザー alpha_virginisalpha_virginis
提出日時 2015-04-16 23:34:57
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 1,272 ms
コンパイル使用メモリ 160,968 KB
実行使用メモリ 10,784 KB
最終ジャッジ日時 2024-07-04 15:10:01
合計ジャッジ時間 24,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1,008 ms
6,944 KB
testcase_09 AC 2,700 ms
6,940 KB
testcase_10 AC 2,039 ms
6,944 KB
testcase_11 AC 1,392 ms
6,940 KB
testcase_12 AC 254 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 4,831 ms
6,944 KB
testcase_19 AC 2,754 ms
6,940 KB
testcase_20 AC 1,115 ms
6,944 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main() {

  int N;
  std::vector<int> v;
  int ans;
  int temp;

  std::cin >> N;
  for(int i = 0; i < N; ++i) {
    std::cin >> temp;
    v.push_back(temp);
  }

  for(int i = 0; i < N; ++i) {
    temp = v[i];
    for(int j = i+1; j < N; ++j) {
      if( temp == v[j] ) {
	v[i] = v[j] = 0;
      }
    }
  }

  ans = 0;
  for(int i = 0; i < N; ++i) {
    if( v[i] != 0 ) {
      ans++;
    }
  }

  std::cout << ans << std::endl;

  return 0;
}
0