結果

問題 No.2268 NGワード回避
ユーザー Moss_LocalMoss_Local
提出日時 2023-03-08 00:12:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,276 KB
最終ジャッジ日時 2024-09-18 02:18:47
合計ジャッジ時間 9,750 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
22,072 KB
testcase_01 AC 134 ms
21,384 KB
testcase_02 AC 136 ms
21,380 KB
testcase_03 AC 133 ms
21,892 KB
testcase_04 AC 132 ms
21,896 KB
testcase_05 AC 132 ms
22,148 KB
testcase_06 AC 136 ms
21,892 KB
testcase_07 AC 138 ms
21,508 KB
testcase_08 AC 135 ms
21,388 KB
testcase_09 AC 133 ms
22,148 KB
testcase_10 AC 133 ms
22,160 KB
testcase_11 AC 134 ms
21,444 KB
testcase_12 AC 136 ms
22,148 KB
testcase_13 AC 134 ms
21,512 KB
testcase_14 AC 135 ms
21,508 KB
testcase_15 AC 135 ms
22,144 KB
testcase_16 AC 134 ms
21,892 KB
testcase_17 AC 138 ms
21,896 KB
testcase_18 AC 135 ms
21,380 KB
testcase_19 AC 135 ms
22,152 KB
testcase_20 AC 137 ms
21,412 KB
testcase_21 AC 139 ms
22,152 KB
testcase_22 AC 139 ms
21,516 KB
testcase_23 AC 138 ms
22,020 KB
testcase_24 AC 134 ms
22,020 KB
testcase_25 AC 137 ms
22,152 KB
testcase_26 AC 138 ms
22,152 KB
testcase_27 AC 134 ms
22,152 KB
testcase_28 AC 132 ms
21,512 KB
testcase_29 AC 131 ms
21,384 KB
testcase_30 AC 132 ms
21,508 KB
testcase_31 AC 136 ms
22,020 KB
testcase_32 AC 133 ms
22,152 KB
testcase_33 AC 134 ms
21,508 KB
testcase_34 AC 132 ms
22,276 KB
testcase_35 AC 134 ms
21,384 KB
testcase_36 AC 135 ms
21,512 KB
testcase_37 AC 135 ms
21,892 KB
testcase_38 AC 133 ms
21,892 KB
testcase_39 AC 134 ms
21,896 KB
testcase_40 AC 135 ms
22,152 KB
testcase_41 AC 134 ms
21,900 KB
testcase_42 AC 136 ms
21,384 KB
testcase_43 AC 138 ms
22,148 KB
testcase_44 AC 136 ms
21,820 KB
testcase_45 AC 133 ms
21,892 KB
testcase_46 AC 134 ms
21,504 KB
testcase_47 AC 136 ms
22,144 KB
testcase_48 AC 136 ms
22,148 KB
testcase_49 AC 138 ms
22,024 KB
testcase_50 AC 138 ms
21,900 KB
testcase_51 AC 137 ms
21,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
from cgitb import reset
from collections import defaultdict
from functools import lru_cache
from sys import flags, stdin
import math
import re
import queue
from tokenize import String
import typing
import itertools
import bisect
import statistics
# import numpy as np
# from numpy.core.function_base import _needs_add_docstring
# from numpy.core.numeric import outer
input = stdin.readline
MOD = 1000000007
INF = 122337203685477580


def solve():
    n = int(input())
    # set
    st = set()
    for _ in range(n):
        # read string remove line break
        s = input().rstrip()
        st.add((s))

    # print(st)

    nn = min(10, n)
    for i in range(2**nn):
        s = ""
        for j in range(0, nn):
            if (i >> j) & 1:
                s += "a"
            else:
                s += "b"
        while len(s) < n:
            s += "a"
        if s not in st:
            print(s)
            return

    return


if __name__ == '__main__':
    solve()
0