結果

問題 No.349 干支の置き物
ユーザー dnish
提出日時 2017-07-04 00:22:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 1,674 ms
コンパイル使用メモリ 174,528 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-05 12:55:50
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i,n,N) for(int i=(n);i<(int) N;i++)
#define p(s) cout<<(s)<<endl
using namespace std;

int main(){
	int N;
	cin>>N;
	int mx=0;
	map<string,int> m;
	REP(i,0,N){
		string s;
		cin>>s;
		m[s]++;
		mx=max(mx,m[s]);
	}
	if(mx<=(N+1)/2) p("YES");
	else p("NO");
	return 0;
}
0