結果
問題 | No.182 新規性の虜 |
ユーザー | hamray |
提出日時 | 2017-11-16 18:13:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 576 bytes |
コンパイル時間 | 732 ms |
コンパイル使用メモリ | 78,500 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 00:43:20 |
合計ジャッジ時間 | 2,941 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 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 | 2 ms
5,376 KB |
testcase_08 | AC | 27 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 31 ms
5,376 KB |
testcase_25 | AC | 19 ms
5,376 KB |
testcase_26 | AC | 7 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
evil01.txt | AC | 43 ms
5,376 KB |
evil02.txt | AC | 43 ms
5,376 KB |
ソースコード
#include<iostream> #include<iomanip> #include<cmath> #include<string> #include<algorithm> #include<vector> #include<math.h> #include<stack> #include <typeinfo> using namespace std; int main(void){ int N, c; cin >> N; vector<int> v; int cnt = 0; for(int i = 0; i < N; i++){ cin >> c; v.push_back(c); } int key = v[0]; sort(v.begin(), v.end()); for(int i = 1; i < N; i++){ if(key != v[i]){ cnt++; key = v[i]; } } if(cnt > 0) cnt += 1; cout << cnt << endl; return 0; }