結果

問題 No.349 干支の置き物
ユーザー first_vilfirst_vil
提出日時 2020-07-04 22:05:22
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 78,196 KB
最終ジャッジ日時 2025-01-11 15:46:56
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<map>
using namespace std;
int main(){
    int n;cin>>n;
    bool ok=true;
    map<string,int> m;
    for(int i=0;i<n;++i){
        string s;cin>>s;
        ok&=++m[s]<=(n+1)/2;
    }
    cout<<(ok?"YES":"NO")<<"\n";
}
0