結果

問題 No.233 めぐるはめぐる (3)
ユーザー GuestGuest
提出日時 2019-07-19 14:53:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 667 ms / 1,000 ms
コード長 412 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,424 KB
最終ジャッジ日時 2024-06-07 16:46:24
合計ジャッジ時間 12,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 623 ms
37,664 KB
testcase_01 AC 526 ms
38,864 KB
testcase_02 AC 478 ms
28,236 KB
testcase_03 AC 554 ms
39,424 KB
testcase_04 AC 643 ms
37,996 KB
testcase_05 AC 648 ms
37,856 KB
testcase_06 AC 643 ms
37,908 KB
testcase_07 AC 667 ms
37,936 KB
testcase_08 AC 637 ms
37,948 KB
testcase_09 AC 346 ms
22,984 KB
testcase_10 AC 349 ms
23,116 KB
testcase_11 AC 349 ms
23,112 KB
testcase_12 AC 560 ms
39,044 KB
testcase_13 AC 637 ms
37,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

voewl=['i','a','a','e','u','u']
consonant=['','n','b','m','g','r']
vs = set(itertools.permutations(voewl))
cs = set(itertools.permutations(consonant))
sn=set()
all=set()

n=int(input())
for i in range(n):
  sn.add(input())

for i in vs:
  for j in cs:
    str=''
    for k in range(6):
      str = str+j[k]+i[k]
    all.add(str)

if len(all)==n:
  print('NO')
else:
  all-=sn
  print(all.pop())
0