Codeforces Round #447 (Div. 2) AQAQ

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #447 (Div. 2) AQAQ相关的知识,希望对你有一定的参考价值。

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


在这里输入题意

【题解】


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) AQAQ的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #447 (Div. 2)

Codeforces Round #447 (Div. 2) A

Codeforces Round #447 (Div. 2) 题解 ABCDE

Codeforces Round #447 (Div. 2)

Codeforces Round #447 (Div. 2) AQAQ

Codeforces Round #447 Div. 2