Submission #994018

#TimeUsernameProblemLanguageResultExecution timeMemory
994018vjudge1Bridž (COCI17_bridz)C++17
50 / 50
2 ms348 KiB
#include <bits/stdc++.h>
using namespace std;

int main(){
    int n;
    cin >> n;
    int ans = 0;
    for (int i = 0; i < n; i ++){
        string s;
        cin >> s;
        for (char c : s){
            if (c == 'A')
                ans += 4;
            if (c == 'K')
                ans += 3;
            if (c == 'Q')
                ans += 2;
            if (c == 'J')
                ans++;
        }
    }

    cout << ans << endl;
}
#Verdict Execution timeMemoryGrader output
Fetching results...