結果
問題 | No.349 干支の置き物 |
ユーザー | prog470 |
提出日時 | 2016-05-14 14:56:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 622 bytes |
コンパイル時間 | 1,433 ms |
コンパイル使用メモリ | 162,696 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 02:31:58 |
合計ジャッジ時間 | 8,201 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#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+n); 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; }