結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | terune |
提出日時 | 2016-08-25 22:52:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 658 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,120 KB |
最終ジャッジ日時 | 2024-11-08 03:15:32 |
合計ジャッジ時間 | 8,800 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 72 ms
11,904 KB |
testcase_10 | RE | - |
testcase_11 | AC | 74 ms
12,032 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
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)//6 con_size = len(con_all)//6 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 = list(set(all_list)) for i in range(N): all_list.remove(a[i]) if len(all_list) == 0: print('NO') else: print('%s' % all_list[0])