結果

問題 No.3395 Range Flipping Game
コンテスト
ユーザー yuusaan
提出日時 2025-12-02 12:46:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 120 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 83,032 KB
実行使用メモリ 67,336 KB
最終ジャッジ日時 2025-12-02 12:46:11
合計ジャッジ時間 3,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 1
other RE * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

T = int(input())
for i in T:
  S = input()
  if len(S)==1:
    print("B")
  else:
    S[0]='B'
    S[1]='B'
    print(S)
0