結果
問題 |
No.349 干支の置き物
|
ユーザー |
|
提出日時 | 2024-03-31 18:13:36 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 481 bytes |
コンパイル時間 | 4,046 ms |
コンパイル使用メモリ | 256,836 KB |
最終ジャッジ日時 | 2025-02-20 18:11:31 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ld = long double; int N, ma; map<string, int> mp; int main() { cin >> N; for (int i = 0; i < N; i++) { string A; cin >> A; mp[A]++; } if (N % 2 == 1) { ma = N / 2 + 1; } else { ma = N / 2; } for (auto p: mp) { if (p.second > ma) { cout << "NO" << endl; return 0; } } cout << "YES" << endl; return 0; }