結果

問題 No.346 チワワ数え上げ問題
ユーザー kuisibakuisiba
提出日時 2016-11-11 11:36:49
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 516 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 55,324 KB
実行使用メモリ 16,968 KB
最終ジャッジ日時 2024-11-25 08:05:07
合計ジャッジ時間 37,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 2 ms
10,144 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 2 ms
9,892 KB
testcase_04 AC 1 ms
13,636 KB
testcase_05 AC 1 ms
10,148 KB
testcase_06 AC 1 ms
13,640 KB
testcase_07 AC 1 ms
10,020 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 2 ms
10,016 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 10 ms
13,636 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
16,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

int main() {

  ios::sync_with_stdio(false);
  cin.tie(0);

  string s;
  cin >> s;
  int ans = 0;
  for (size_t i = 0; i < s.size(); i++) {
    if (s.at(i) == 'c') {
      for (size_t j = i + 1; j < s.size(); j++) {
        if (s.at(j) == 'w') {
          for (size_t k = j + 1; k < s.size(); k++) {
            if (s.at(k) == 'w') {
              ans++;
            }
          }
        }
      }
    }
  }
  cout << ans << endl;
}

0