# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
891710 | ind1v | Bridž (COCI17_bridz) | C++11 | 1 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;
#define int long long
#define sz(x) (int)((x).size())
#define all(x) (x).begin(), (x).end()
int n, z;
string s;
int32_t main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n;
while (n--) {
cin >> s;
for (int i = 0; i < sz(s); ++i) {
if (s[i] == 'A') z += 4;
if (s[i] == 'K') z += 3;
if (s[i] == 'Q') z += 2;
if (s[i] == 'J') z += 1;
}
}
cout << z;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |