結果

問題 No.349 干支の置き物
ユーザー focusfocus
提出日時 2018-02-17 17:45:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 69,720 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 12:15:27
合計ジャッジ時間 1,423 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstdio>
#include<cstring>
#include<map>
using namespace std;

int main(){
    int N,a[12]={};
    char s[100];
    cin >> N;
    for(int i=0;i<N;i++){
        cin >> s;
		if(strcmp(s,"ne")==0)a[0]++;
		else if(strcmp(s,"ushi")==0)a[1]++;
		else if(strcmp(s,"tora")==0)a[2]++;
		else if(strcmp(s,"u")==0)a[3]++;
		else if(strcmp(s,"tatsu")==0)a[4]++;
		else if(strcmp(s,"mi")==0)a[5]++;
		else if(strcmp(s,"uma")==0)a[6]++;
		else if(strcmp(s,"hitsuji")==0)a[7]++;
		else if(strcmp(s,"saru")==0)a[8]++;
		else if(strcmp(s,"tori")==0)a[9]++;
		else if(strcmp(s,"inu")==0)a[10]++;
		else if(strcmp(s,"i")==0)a[11]++;
    }
    for(int i=0;i<12;i++){
        if(a[i]>(N+1)/2){
            cout << "NO";
            return 0;
        }
    }
    cout << "YES"; 
    return 0;
}
0