結果

問題 No.233 めぐるはめぐる (3)
ユーザー htkbhtkb
提出日時 2018-05-01 11:45:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 705 ms / 1,000 ms
コード長 355 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,428 KB
最終ジャッジ日時 2024-06-28 00:05:37
合計ジャッジ時間 11,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 685 ms
53,224 KB
testcase_01 AC 607 ms
53,148 KB
testcase_02 AC 544 ms
53,276 KB
testcase_03 AC 622 ms
53,428 KB
testcase_04 AC 705 ms
53,340 KB
testcase_05 AC 686 ms
53,260 KB
testcase_06 AC 700 ms
53,280 KB
testcase_07 AC 698 ms
53,324 KB
testcase_08 AC 700 ms
53,356 KB
testcase_09 AC 468 ms
53,340 KB
testcase_10 AC 457 ms
53,284 KB
testcase_11 AC 456 ms
53,264 KB
testcase_12 AC 616 ms
53,380 KB
testcase_13 AC 690 ms
53,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
consonant = ["", "n", "b", "m", "g", "r"]
vowel = ["i", "a", "a", "e", "u", "u"]
name = set(
    [a+b+c+d+e+f+g+h+i+j+k+l
    for a, c, e, g, i, k in permutations(consonant)
    for b, d, f, h, j, l in permutations(vowel)])

name.difference_update([input() for _ in [0]*int(input())])
print(name.pop() if name else "NO")
0