結果
| 問題 | No.559 swapAB列 |
| コンテスト | |
| ユーザー |
cande398
|
| 提出日時 | 2018-05-23 11:44:30 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 2,000 ms |
| + 188µs | |
| コード長 | 176 bytes |
| 記録 | |
| コンパイル時間 | 280 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-01 02:59:33 |
| 合計ジャッジ時間 | 2,291 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
S = list(input()) ans = 0 while True: for i in range(len(S)-1): if S[i:i+2] == ['B', 'A']: S[i], S[i+1] = S[i+1], S[i] ans += 1 if sorted(S) == S: break print(ans)
cande398