結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | yaoshimax |
提出日時 | 2015-06-28 03:51:52 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 618 bytes |
コンパイル時間 | 1,710 ms |
コンパイル使用メモリ | 76,712 KB |
実行使用メモリ | 101,072 KB |
最終ジャッジ日時 | 2024-07-07 20:18:48 |
合計ジャッジ時間 | 5,820 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 160 ms
98,896 KB |
testcase_01 | AC | 100 ms
87,568 KB |
testcase_02 | AC | 82 ms
80,528 KB |
testcase_03 | AC | 105 ms
88,572 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
import itertools boin=["i","a","a","e","u","u"] siin=["n","b","m","g","r"] N=int(raw_input()) S=[raw_input() for i in range(N)] set(S) for p in itertools.permutations(boin): for q in itertools.permutations(siin): for j in range(5): s="" for i in range(5): s+=q[i] s+=p[i] if i==j : s+= p[5] if not (s in S): print s exit() s=p[5] for i in range(5): s+=q[i] s+=p[i] if not (s in S): print s exit() print "NO"