結果

問題 No.349 干支の置き物
ユーザー prog470prog470
提出日時 2016-05-14 15:03:51
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 621 bytes
コンパイル時間 1,330 ms
コンパイル使用メモリ 162,784 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-16 16:50:10
合計ジャッジ時間 2,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)

using namespace std;

int main(){
	
	string s[] = {"ne","ushi","tora","u","tatsu","mi","uma",
					"hitsuji","saru","tori","inu","i"}
	, str[50];

	int n,ar[12]={};
	cin>>n;
	rep(i,0,n){
		cin>>str[i];
	}

	rep(i,0,n){
		rep(j,0,12){
			if(str[i] == s[j]){
				ar[j]++;
			}
		}
	}
	sort(ar,ar+12);

	int tmp = -1;
	bool f;
	rep(i,0,n){
		for(int j=11; 0<=j; j--){
			f = false;
			if(j != tmp && ar[j]!=0){
				ar[j]--;
				tmp = j;
				f = true;

				break;
			}
		}
		if(!f){
			cout<<"NO"<<endl;
			return 0;
		}
	}

	cout<<"YES"<<endl;
	
	return 0;
}
0