結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | maine_honzuki |
提出日時 | 2021-04-26 18:48:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 992 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 217,340 KB |
実行使用メモリ | 12,772 KB |
最終ジャッジ日時 | 2024-07-05 05:05:59 |
合計ジャッジ時間 | 11,833 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
12,512 KB |
testcase_01 | AC | 75 ms
9,000 KB |
testcase_02 | AC | 54 ms
6,048 KB |
testcase_03 | AC | 84 ms
10,668 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 772 ms
12,772 KB |
testcase_06 | AC | 739 ms
12,772 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 36 ms
5,376 KB |
testcase_10 | AC | 36 ms
5,376 KB |
testcase_11 | AC | 36 ms
5,376 KB |
testcase_12 | AC | 76 ms
9,132 KB |
testcase_13 | AC | 108 ms
12,516 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; unordered_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()); unordered_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; 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; }