結果

問題 No.349 干支の置き物
ユーザー 👑 NachiaNachia
提出日時 2020-10-06 22:06:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 1,733 ms
コンパイル使用メモリ 174,916 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-20 03:03:45
合計ジャッジ時間 2,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int main() {
    map<string, int> G;
    int N; cin >> N;
    rep(i, N) { string A; cin >> A; G[A]++; }
    bool ok = true;
    for (auto p : G) if (p.second > (N + 1) / 2) ok = false;
    cout << (ok ? "YES" : "NO") << endl;
    return 0;
}
0