結果
問題 |
No.349 干支の置き物
|
ユーザー |
![]() |
提出日時 | 2016-03-12 00:17:06 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 369 bytes |
コンパイル時間 | 635 ms |
コンパイル使用メモリ | 69,772 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 01:36:20 |
合計ジャッジ時間 | 1,611 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 WA * 3 |
ソースコード
#include <iostream> #include <sstream> #include <map> #include <cstdint> using namespace std; int main(int argc, char *argv[]) { int N; cin >> N; map<string, int> m; bool possible = true; for (int i = 0; i < N; ++i) { string s; cin >> s; m[s] += 1; if (m[s] > N / 2) { possible = false; } } cout << (possible ? "YES" : "NO") << endl; return 0; }