結果
問題 | No.182 新規性の虜 |
ユーザー | f843nmfwisfeuw |
提出日時 | 2020-09-01 19:51:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 565 bytes |
コンパイル時間 | 1,023 ms |
コンパイル使用メモリ | 100,672 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-11-20 14:00:02 |
合計ジャッジ時間 | 2,997 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 43 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 3 ms
6,816 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,816 KB |
testcase_24 | AC | 56 ms
8,192 KB |
testcase_25 | WA | - |
testcase_26 | AC | 9 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,816 KB |
evil01.txt | AC | 67 ms
8,192 KB |
evil02.txt | AC | 68 ms
8,192 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <iomanip> #include <stack> #include <algorithm> #include <string> #include <map> #include <iterator> #include <set> #include <queue> #include <bitset> #include <cassert> using namespace std; int main() { int N; cin >> N; map<int,int> m; for (int i = 0; i < N; ++i) { int A; cin >> A; m[A] += 1; } int cnt = 0; for(pair<int,int> kv : m){ if(kv.second) { cnt += 1; } } cout << cnt << endl; }