結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | 🍡yurahuna |
提出日時 | 2016-02-29 00:48:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 362 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,040 KB |
最終ジャッジ日時 | 2024-09-24 12:34:53 |
合計ジャッジ時間 | 4,825 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 268 ms
26,656 KB |
testcase_01 | AC | 183 ms
16,384 KB |
testcase_02 | AC | 103 ms
13,696 KB |
testcase_03 | AC | 200 ms
17,152 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
import itertools as itr N = int(input()) S = [input() for i in range(N)] for a in itr.permutations(['i', 'a', 'a', 'e', 'u', 'u'], 6): for b in itr.permutations(['n', 'b', 'm', 'g', 'r'], 5): s = "" for i in range(5): s += a[i] + b[i] s += a[5] if not s in S: print(s) exit() print('NO')