제출 #891710

#제출 시각아이디문제언어결과실행 시간메모리
891710ind1vBridž (COCI17_bridz)C++11
50 / 50
1 ms348 KiB
#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 timeMemoryGrader output
Fetching results...