結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | kazu0x17 |
提出日時 | 2015-07-04 00:25:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 960 bytes |
コンパイル時間 | 1,129 ms |
コンパイル使用メモリ | 163,784 KB |
実行使用メモリ | 170,728 KB |
最終ジャッジ日時 | 2024-07-07 22:46:29 |
合計ジャッジ時間 | 4,380 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
14,240 KB |
testcase_01 | AC | 27 ms
6,944 KB |
testcase_02 | AC | 15 ms
6,944 KB |
testcase_03 | AC | 30 ms
6,944 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; char v[] = {'a', 'i', 'u', 'e', 'o'}; bool vowel(char c){ for (int i = 0; i < 5; i++) { if(v[i] == c)return true; } return false; } int main(int argc, char *argv[]){ int n; cin >> n; string used[n]; for (int i = 0; i < n; i++) { cin >> used[i]; } string s = "inabameguru"; if(n == 0){ std::cout << s << std::endl; return 0; } sort(s.begin(), s.end()); bool flag = false; do{ if(!vowel(s.back()))continue; bool ok = true; for (int i = 1; i < s.length(); i++) { if(!vowel(s[i - 1]) && !vowel(s[i])){ ok = false; break; } } if(!ok)continue; flag = true; for (int i = 0; i < n; i++) { if(used[i] != s)continue; flag = false; break; } if(flag)break; }while(next_permutation(s.begin(), s.end())); if(flag)std::cout << s << std::endl; else std::cout << "NO" << std::endl; return 0; }