結果

問題 No.182 新規性の虜
ユーザー michonz4michonz4
提出日時 2019-05-30 15:13:33
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 65,676 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-17 16:07:31
合計ジャッジ時間 2,442 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 35 ms
6,940 KB
testcase_09 AC 56 ms
7,296 KB
testcase_10 AC 47 ms
6,944 KB
testcase_11 AC 38 ms
6,940 KB
testcase_12 AC 15 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,940 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 1 ms
6,940 KB
testcase_24 AC 47 ms
8,192 KB
testcase_25 AC 16 ms
6,940 KB
testcase_26 AC 7 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
evil01.txt AC 56 ms
8,192 KB
evil02.txt AC 55 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

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

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