제출 #397613

#제출 시각아이디문제언어결과실행 시간메모리
397613victoriadBridž (COCI17_bridz)C++14
50 / 50
2 ms332 KiB
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <utility>
#include <queue>
#include <map>
#include <iomanip>
#include <fstream>
using namespace std;


int main(){
  ios::sync_with_stdio(false);
   cin.tie(NULL);
   int n;
   cin>>n;
   int x=0;
   string s;
   while(n--){
     cin>>s;
     for(int i=0;i<13;i++){
       if(s[i]=='A'){
         x+=4;
       }
       else if(s[i]=='K'){
         x+=3;
       }
       else if(s[i]=='Q'){
         x+=2;
       }
       else if(s[i]=='J'){
         x+=1;
       }
     }
   }
   cout<<x;
  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...