結果

問題 No.2268 NGワード回避
ユーザー lloyzlloyz
提出日時 2023-04-14 22:24:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-04-18 19:54:10
合計ジャッジ時間 5,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 46 ms
53,248 KB
testcase_04 AC 46 ms
53,376 KB
testcase_05 AC 46 ms
53,376 KB
testcase_06 AC 49 ms
53,376 KB
testcase_07 AC 47 ms
53,504 KB
testcase_08 AC 54 ms
59,776 KB
testcase_09 AC 53 ms
59,904 KB
testcase_10 AC 55 ms
60,800 KB
testcase_11 AC 54 ms
60,672 KB
testcase_12 AC 55 ms
60,672 KB
testcase_13 AC 54 ms
60,928 KB
testcase_14 AC 55 ms
60,672 KB
testcase_15 AC 54 ms
60,672 KB
testcase_16 AC 54 ms
60,416 KB
testcase_17 AC 55 ms
60,416 KB
testcase_18 AC 54 ms
60,288 KB
testcase_19 AC 54 ms
60,160 KB
testcase_20 AC 54 ms
60,672 KB
testcase_21 AC 54 ms
60,672 KB
testcase_22 AC 55 ms
60,672 KB
testcase_23 AC 55 ms
60,416 KB
testcase_24 AC 55 ms
60,928 KB
testcase_25 AC 55 ms
60,288 KB
testcase_26 AC 54 ms
60,160 KB
testcase_27 AC 54 ms
60,672 KB
testcase_28 AC 54 ms
60,416 KB
testcase_29 AC 56 ms
60,672 KB
testcase_30 AC 55 ms
60,288 KB
testcase_31 AC 55 ms
60,160 KB
testcase_32 AC 55 ms
60,160 KB
testcase_33 AC 56 ms
60,288 KB
testcase_34 AC 54 ms
60,544 KB
testcase_35 AC 56 ms
60,416 KB
testcase_36 AC 54 ms
60,928 KB
testcase_37 AC 55 ms
60,800 KB
testcase_38 AC 54 ms
60,800 KB
testcase_39 AC 56 ms
60,416 KB
testcase_40 AC 54 ms
60,800 KB
testcase_41 AC 54 ms
60,672 KB
testcase_42 AC 55 ms
60,672 KB
testcase_43 AC 55 ms
60,928 KB
testcase_44 AC 55 ms
60,416 KB
testcase_45 AC 56 ms
60,672 KB
testcase_46 AC 56 ms
60,800 KB
testcase_47 AC 87 ms
71,168 KB
testcase_48 AC 86 ms
71,296 KB
testcase_49 AC 85 ms
71,296 KB
testcase_50 AC 77 ms
71,168 KB
testcase_51 AC 77 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
counter = defaultdict(set)
for _ in range(n):
    s = input()
    a_cnt, b_cnt = 0, 0
    for i in range(n):
        if s[i] == 'a':
            a_cnt += 1
        else:
            b_cnt += 1
    counter[(a_cnt, b_cnt)].add(s)
for i in range(n + 1):
    if len(counter[(i, n - i)]) == 0:
        print('a' * i + 'b' * (n - i))
        break
0