結果

問題 No.182 新規性の虜
ユーザー michonz4michonz4
提出日時 2019-05-30 15:32:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 64,456 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-09-17 16:07:47
合計ジャッジ時間 1,765 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 32 ms
6,944 KB
testcase_09 AC 52 ms
7,424 KB
testcase_10 AC 48 ms
6,940 KB
testcase_11 AC 36 ms
6,940 KB
testcase_12 AC 14 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,944 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 47 ms
8,064 KB
testcase_25 AC 14 ms
6,940 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
evil01.txt AC 57 ms
8,064 KB
evil02.txt AC 57 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
#include <algorithm>

using namespace std;

int main() {
  int n;
  cin >> n;
  set<long long> st;
  
  for (int i=0; i<n; i++) {
    long long t;
    cin >> t;
    st.insert(t);
  }

  cout << max(0, (int)(st.size()-(n-st.size()))) << endl;
  return 0;
}
0