結果
問題 | No.349 干支の置き物 |
ユーザー | fumi6328 |
提出日時 | 2018-09-14 21:01:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 699 bytes |
コンパイル時間 | 430 ms |
コンパイル使用メモリ | 67,644 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 05:59:09 |
合計ジャッジ時間 | 1,365 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 1 ms
6,944 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> using namespace std; int main(){ int n,x[12] = {}; cin >> n; string a; for(int i = 0; i < n; i++){ cin >> a; if(a == "ne") x[0]++; if(a == "ushi") x[1]++; if(a == "tora") x[2]++; if(a == "u") x[3]++; if(a == "tatsu") x[4]++; if(a == "mi") x[5]++; if(a == "uma") x[6]++; if(a == "hitsuji") x[7]++; if(a == "saru") x[8]++; if(a == "tori") x[9]++; if(a == "inu") x[10]++; if(a == "i") x[11]++; } cout << (*max_element(x,x+12) < n / 2 + n % 2 ? "YES" : "NO")<< endl; return 0; }