結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | rlangevin |
提出日時 | 2023-09-26 12:23:48 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 203 ms / 1,000 ms |
コード長 | 914 bytes |
コンパイル時間 | 138 ms |
コンパイル使用メモリ | 82,020 KB |
実行使用メモリ | 86,388 KB |
最終ジャッジ日時 | 2024-07-19 06:53:21 |
合計ジャッジ時間 | 3,480 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
86,220 KB |
testcase_01 | AC | 67 ms
81,288 KB |
testcase_02 | AC | 58 ms
79,272 KB |
testcase_03 | AC | 72 ms
81,988 KB |
testcase_04 | AC | 190 ms
86,036 KB |
testcase_05 | AC | 191 ms
86,204 KB |
testcase_06 | AC | 176 ms
86,388 KB |
testcase_07 | AC | 199 ms
86,300 KB |
testcase_08 | AC | 203 ms
86,288 KB |
testcase_09 | AC | 36 ms
58,924 KB |
testcase_10 | AC | 37 ms
57,920 KB |
testcase_11 | AC | 35 ms
57,268 KB |
testcase_12 | AC | 71 ms
82,388 KB |
testcase_13 | AC | 83 ms
86,236 KB |
ソースコード
import sys input = sys.stdin.readline from itertools import * N = int(input()) S = set() for _ in range(N): S.add(input().rstrip()) L = [[1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1], [0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1], [0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1], [0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1],] for t1 in permutations(["n", "b", "m", "g", "r"]): for t2 in set(permutations(["i", "a", "a", "e", "u", "u"])): for k in range(6): temp = [] i1, i2 = 0, 0 for i in range(11): if L[k][i]: temp.append(t2[i2]) i2 += 1 else: temp.append(t1[i1]) i1 += 1 temp = "".join(temp) if temp not in S: print(temp) exit() print("NO")