結果
問題 | No.559 swapAB列 |
ユーザー | 👑 CleyL |
提出日時 | 2020-01-17 13:20:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 218 bytes |
コンパイル時間 | 740 ms |
コンパイル使用メモリ | 64,928 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 15:48:39 |
合計ジャッジ時間 | 1,564 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#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; }