結果
| 問題 | No.559 swapAB列 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-08-25 22:52:34 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 259 bytes |
| 記録 | |
| コンパイル時間 | 79 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 10,368 KB |
| 最終ジャッジ日時 | 2024-10-15 16:06:04 |
| 合計ジャッジ時間 | 822 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 1 WA * 6 |
ソースコード
def main():
S = input()
if len(S) == 1:
print(0)
return
i = 0
src = S
while True:
dst = src.replace('BA', 'AB', 1)
if src == dst:
break
i += 1
src = dst
print(dst)
main()