結果
| 問題 |
No.346 チワワ数え上げ問題
|
| コンテスト | |
| ユーザー |
ldsyb
|
| 提出日時 | 2016-03-03 21:47:27 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 320 bytes |
| コンパイル時間 | 428 ms |
| コンパイル使用メモリ | 55,536 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-24 13:56:42 |
| 合計ジャッジ時間 | 1,215 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
//4STEP 数学1+AのP.100参照
int main(){
string s;
cin >> s;
long long ans = 0,count = 0;
for(int i = s.size() - 1;i != -1;i--){
if(s[i] == 'w') count++;
if(s[i] == 'c') ans += count * (count - 1) / 2;
}
cout << ans << endl;
}
ldsyb