結果
問題 | No.2268 NGワード回避 |
ユーザー | lloyz |
提出日時 | 2023-04-14 22:24:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 396 bytes |
コンパイル時間 | 638 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 71,296 KB |
最終ジャッジ日時 | 2024-10-10 13:17:51 |
合計ジャッジ時間 | 5,263 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 52 |
ソースコード
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