結果
問題 |
No.559 swapAB列
|
ユーザー |
👑 |
提出日時 | 2020-01-17 13:20:44 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 218 bytes |
コンパイル時間 | 740 ms |
コンパイル使用メモリ | 64,928 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 15:48:39 |
合計ジャッジ時間 | 1,564 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 1 WA * 6 |
ソースコード
#include <iostream> using namespace std; int main(){ string s;cin>>s; int nw = 1; int ans = 0; for(int i = 0; s.size() > i; i++){ if(s[i] == 'A')ans += (i+1)-nw; } cout << ans << endl; }