結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | maine_honzuki |
提出日時 | 2021-04-26 18:51:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 581 ms / 1,000 ms |
コード長 | 1,019 bytes |
コンパイル時間 | 2,391 ms |
コンパイル使用メモリ | 214,976 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-07-05 05:07:35 |
合計ジャッジ時間 | 7,316 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
13,184 KB |
testcase_01 | AC | 84 ms
9,728 KB |
testcase_02 | AC | 42 ms
6,656 KB |
testcase_03 | AC | 97 ms
10,496 KB |
testcase_04 | AC | 566 ms
13,568 KB |
testcase_05 | AC | 304 ms
13,440 KB |
testcase_06 | AC | 297 ms
13,568 KB |
testcase_07 | AC | 581 ms
13,568 KB |
testcase_08 | AC | 576 ms
13,568 KB |
testcase_09 | AC | 9 ms
5,376 KB |
testcase_10 | AC | 9 ms
5,376 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | AC | 83 ms
9,856 KB |
testcase_13 | AC | 146 ms
13,440 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; set<string> used; for (int i = 0; i < N; i++) { string s; cin >> s; used.insert(s); } string sabbat_of_the_witch = "inabameguru"; sort(sabbat_of_the_witch.begin(), sabbat_of_the_witch.end()); set<char> boin({'a', 'i', 'u', 'e', 'o'}); do { bool flag = true, shiin = false; for (auto&& c : sabbat_of_the_witch) { if (boin.count(c)) { shiin = false; } else { if (shiin == true) { flag = false; break; } shiin = true; } } if (flag && boin.count(sabbat_of_the_witch.back()) && used.count(sabbat_of_the_witch) == 0) { cout << sabbat_of_the_witch << endl; return 0; } } while (next_permutation(sabbat_of_the_witch.begin(), sabbat_of_the_witch.end())); cout << "NO" << endl; }