結果

問題 No.346 チワワ数え上げ問題
ユーザー koturnkoturn
提出日時 2016-02-27 17:21:19
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 55,660 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 11:41:50
合計ジャッジ時間 1,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdint>
#include <cstdlib>
#include <iostream>
#include <string>


int
main()
{
  std::cin.tie(0);
  std::ios::sync_with_stdio(false);

  std::string s;
  std::cin >> s;
  std::uint64_t cnt = 0, wcnt = 0;
  for (std::string::size_type i = s.length() - 1; i != static_cast<std::string::size_type>(-1); i--) {
    switch (s[i]) {
      case 'c':
        cnt += wcnt * (wcnt - 1) / 2;
        break;
      case 'w':
        wcnt++;
        break;
    }
  }
  std::cout << cnt << std::endl;

  return EXIT_SUCCESS;
}
0