結果

問題 No.233 めぐるはめぐる (3)
ユーザー convexineqconvexineq
提出日時 2021-01-31 18:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 492 ms / 1,000 ms
コード長 487 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,732 KB
最終ジャッジ日時 2024-06-29 02:43:27
合計ジャッジ時間 4,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
88,916 KB
testcase_01 AC 69 ms
75,904 KB
testcase_02 AC 51 ms
63,872 KB
testcase_03 AC 72 ms
78,464 KB
testcase_04 AC 284 ms
107,008 KB
testcase_05 AC 470 ms
107,488 KB
testcase_06 AC 149 ms
107,732 KB
testcase_07 AC 492 ms
107,008 KB
testcase_08 AC 481 ms
107,008 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 71 ms
77,312 KB
testcase_13 AC 90 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*s = open(0).read().split()
s = set(s)
from itertools import permutations
for b in permutations("aauuie"):
    for a in permutations("mgnbr"):
        for j in range(6):
            r = []
            c = 0
            for i in range(6):
                while c < i + (j <= i):
                    r.append(b[c])
                    c += 1
                if i < 5: r.append(a[i])
            if "".join(r) not in s:
                print("".join(r))
                exit()
print("NO")
0