結果
| 問題 | No.349 干支の置き物 |
| コンテスト | |
| ユーザー |
hotpepsi
|
| 提出日時 | 2016-03-12 00:17:06 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 369 bytes |
| 記録 | |
| コンパイル時間 | 499 ms |
| コンパイル使用メモリ | 85,704 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-12 05:11:29 |
| 合計ジャッジ時間 | 1,577 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
}
hotpepsi