結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | terune |
提出日時 | 2016-08-25 23:25:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 628 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 67,736 KB |
最終ジャッジ日時 | 2024-11-08 03:16:32 |
合計ジャッジ時間 | 20,637 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
ソースコード
from itertools import permutations, product N = int(input()) a = [input() for i in range(N)] vow = 'iaaeuu' con = ' nbmgr' vow_all = list(map(''.join, permutations(vow))) con_all = list(map(''.join, permutations(con))) vow_size = len(vow_all) con_size = len(con_all) all_list = [] for i in range(vow_size): for j in range(con_size): strings = '' for k in range(6): strings = strings + con_all[j][k] + vow_all[i][k] all_list.append( strings.replace(' ','') ) all_list = set(all_list) a = set(a) all_list -= a if len(all_list) == 0: print('NO') else: print('%s' % all_list.pop())