結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | tjake |
提出日時 | 2015-12-22 21:28:54 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 335 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 16,800 KB |
最終ジャッジ日時 | 2024-09-18 18:45:08 |
合計ジャッジ時間 | 9,240 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 182 ms
16,672 KB |
testcase_01 | AC | 113 ms
12,064 KB |
testcase_02 | AC | 64 ms
10,272 KB |
testcase_03 | AC | 136 ms
16,784 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 780 ms
16,544 KB |
testcase_06 | AC | 517 ms
16,668 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 12 ms
6,400 KB |
testcase_10 | AC | 12 ms
6,272 KB |
testcase_11 | AC | 12 ms
6,272 KB |
testcase_12 | AC | 119 ms
12,316 KB |
testcase_13 | AC | 176 ms
16,800 KB |
ソースコード
from itertools import permutations n = input() if n==14400: print"NO" exit(0) used = {raw_input() for i in xrange(n)} for p in permutations("iaaeuu"): for q in permutations(["","n","b","m","g","r"]): s = "".join(q[i]+p[i] for i in xrange(6)) if s not in used: print s exit(0) exit(1)