結果

問題 No.2268 NGワード回避
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-04-14 21:54:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 71,336 KB
最終ジャッジ日時 2024-10-10 12:40:22
合計ジャッジ時間 4,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,232 KB
testcase_01 AC 41 ms
54,552 KB
testcase_02 AC 41 ms
54,748 KB
testcase_03 AC 41 ms
54,704 KB
testcase_04 AC 41 ms
54,060 KB
testcase_05 AC 40 ms
54,532 KB
testcase_06 AC 41 ms
55,108 KB
testcase_07 AC 41 ms
54,360 KB
testcase_08 AC 42 ms
55,096 KB
testcase_09 AC 43 ms
55,648 KB
testcase_10 AC 45 ms
54,892 KB
testcase_11 AC 43 ms
54,764 KB
testcase_12 AC 44 ms
55,232 KB
testcase_13 AC 42 ms
54,496 KB
testcase_14 AC 43 ms
56,032 KB
testcase_15 AC 43 ms
54,312 KB
testcase_16 AC 43 ms
56,280 KB
testcase_17 AC 43 ms
54,336 KB
testcase_18 AC 42 ms
54,652 KB
testcase_19 AC 42 ms
56,328 KB
testcase_20 AC 43 ms
56,404 KB
testcase_21 AC 41 ms
54,764 KB
testcase_22 AC 43 ms
55,440 KB
testcase_23 AC 42 ms
54,772 KB
testcase_24 AC 42 ms
54,552 KB
testcase_25 AC 43 ms
54,672 KB
testcase_26 AC 42 ms
54,896 KB
testcase_27 AC 43 ms
54,852 KB
testcase_28 AC 43 ms
54,880 KB
testcase_29 AC 43 ms
55,108 KB
testcase_30 AC 43 ms
54,328 KB
testcase_31 AC 43 ms
54,784 KB
testcase_32 AC 42 ms
54,680 KB
testcase_33 AC 42 ms
54,976 KB
testcase_34 AC 43 ms
54,440 KB
testcase_35 AC 42 ms
55,464 KB
testcase_36 AC 42 ms
54,492 KB
testcase_37 AC 42 ms
55,196 KB
testcase_38 AC 43 ms
55,700 KB
testcase_39 AC 43 ms
54,412 KB
testcase_40 AC 43 ms
55,788 KB
testcase_41 AC 42 ms
56,024 KB
testcase_42 AC 43 ms
54,764 KB
testcase_43 AC 43 ms
55,116 KB
testcase_44 AC 42 ms
55,812 KB
testcase_45 AC 42 ms
55,744 KB
testcase_46 AC 42 ms
55,104 KB
testcase_47 AC 60 ms
71,160 KB
testcase_48 AC 61 ms
70,536 KB
testcase_49 AC 62 ms
71,172 KB
testcase_50 AC 61 ms
70,596 KB
testcase_51 AC 61 ms
71,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import random

N = int(input())

S = set([input() for i in range(N)])


while True:

    ab = "ab"
    x = "".join( [ab[random.randint(0,1)] for i in range(N)] )

    if x not in S:
        print (x)
        sys.exit()
0