結果
| 問題 | No.559 swapAB列 |
| コンテスト | |
| ユーザー |
fV9TwBhUoa9S3eV
|
| 提出日時 | 2019-10-18 14:20:28 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 2,000 ms |
| + 440µs | |
| コード長 | 277 bytes |
| 記録 | |
| コンパイル時間 | 320 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 15,996 KB |
| 最終ジャッジ日時 | 2026-07-29 21:45:24 |
| 合計ジャッジ時間 | 2,291 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
# No.559 swapAB列
s = input()
#s_after = 'A' * s.count('A') + 'B' * s.count('B')
#print(s_after)
indices = []
hands = 0
for i in range(len(s)):
if s[i] == 'B':
indices.append(i + 1)
for j in range(len(indices)):
hands += len(s) - j - indices[j]
print(hands)
fV9TwBhUoa9S3eV