Submission #960226

# Submission time Handle Problem Language Result Execution time Memory
960226 2024-04-10T00:07:35 Z ezzzay Karte (COCI15_karte) C++14
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ff first
#define ss second
#define pb push_back
 
const int N=1e6+3;
char arr[N];
signed main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    string s;
    cin>>s;
    map<char,int>mp;
    mp['H'];
    mp['P'];
    mp['K'];
    mp['T'];
    map<string,int>mp2;
    for(int i=0;i<s.size();i+=3){
        char col=s[i];
        mp[col]++;
        string s2 = s.substr(i,3);
        if(mp2[s2]==1){
            cout<<"GRESKA"";
            return 0;
        }
        mp2[s2]++;
    }
    cout<<13-mp['P']<<" "<<13-mp['K']<<" "<<13-mp['H']<<" "<<13-mp['T'];
}

Compilation message

karte.cpp:27:27: warning: missing terminating " character
   27 |             cout<<"GRESKA"";
      |                           ^
karte.cpp:27:27: error: missing terminating " character
   27 |             cout<<"GRESKA"";
      |                           ^~
karte.cpp: In function 'int main()':
karte.cpp:22:18: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   22 |     for(int i=0;i<s.size();i+=3){
      |                 ~^~~~~~~~~
karte.cpp:27:27: error: expected ';' before 'return'
   27 |             cout<<"GRESKA"";
      |                           ^
      |                           ;
   28 |             return 0;
      |             ~~~~~~