結果
問題 | No.349 干支の置き物 |
ユーザー | conf |
提出日時 | 2016-09-25 15:07:46 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 386 bytes |
コンパイル時間 | 694 ms |
コンパイル使用メモリ | 73,256 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-18 12:04:57 |
合計ジャッジ時間 | 1,866 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> using namespace std; map<string,int> M; int main(){ int N; cin>>N; for(int i=0;i<N;i++){ string s; cin>>s; M[s]++; } for(auto m:M){ if(m.second>(N+1)/2){ cout<<"NO"<<endl; return 0; } } cout<<"YES"<<endl; return 0; }