码迷,mamicode.com
首页 > 其他好文 > 详细

【Codeforces Round #447 (Div. 2) A】QAQ

时间:2017-11-20 17:46:45      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:codeforce   freopen   stdin   习题   ifd   题解   ref   int   blog   

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


C语言程序练习题

【代码】

#include <bits/stdc++.h>
using namespace std;

string s;

int main(){
    #ifdef LOCAL_DEFINE
        freopen("F:\\c++source\\rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> s;
    int n = s.size();
    int num = 0;
    for (int i = 0;i < n;i++)
        for (int j = i+1;j < n;j++)
            for (int k = j+1;k < n;k++)
                if (s[i]=='Q' && s[j]=='A' && s[k]=='Q'){
                    num++;
                }
    cout << num << endl;                    
    return 0;
}

【Codeforces Round #447 (Div. 2) A】QAQ

标签:codeforce   freopen   stdin   习题   ifd   题解   ref   int   blog   

原文地址:http://www.cnblogs.com/AWCXV/p/7867096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!