結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | Tsubajiro |
提出日時 | 2022-05-18 23:54:29 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,061 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 23,212 KB |
最終ジャッジ日時 | 2024-09-17 04:06:12 |
合計ジャッジ時間 | 8,122 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 125 ms
15,344 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 31 ms
10,624 KB |
testcase_10 | AC | 31 ms
10,752 KB |
testcase_11 | AC | 31 ms
10,880 KB |
testcase_12 | AC | 224 ms
21,664 KB |
testcase_13 | WA | - |
ソースコード
N = int(input()) S = [] candi = set() for _ in range(N): s=input() candi.add(s) s = ["n","b","m","g","r"] b = ["i","a","a","e","u","u"] s5=[] b6=[] for i in range(6): if i<5: s5.append(i) b6.append(i) import itertools ss = list(itertools.permutations(s5,5)) bb = list(itertools.permutations(b6,6)) #print(ss) flag=False for i in ss: c = [[] for _ in range(16)] #print(c[0]) #print(s[i[0]]) for j in bb: c[1] = (s[i[0]]) c[4] = (s[i[1]]) c[7] = (s[i[2]]) c[10] = (s[i[3]]) c[13] = (s[i[4]]) c[2] = (b[j[0]]) c[5] = (b[j[1]]) c[8] = (b[j[2]]) c[11] = (b[j[3]]) c[14] = (b[j[4]]) cc=c.copy() for k in range(0,16,3): cc[k]=b[j[5]] candidate = "" #print(cc) for ccc in cc: if not ccc==[]: #print(ccc) candidate+=ccc if candidate not in candi: print(candidate) exit() print("No")