# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
994018 | vjudge1 | Bridž (COCI17_bridz) | C++17 | 2 ms | 348 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |