Submission #2666991


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
 
int main(){
    int t;
    cin >> t;
    string s[t];
    rep(i,t)cin >> s[i];
    rep(i,t){
        int ct = 0;
        rep(j,(int)s[i].size()-4){
            string check = s[i].substr(j,5);
            if(check == "kyoto"||check == "tokyo"){
                ct++;
                j+=4;
            }
        }
        cout << ct << endl;
    }
    return 0;
}

Submission Info

Submission Time
Task A - 東京都
User tubotu
Language C++14 (GCC 5.4.1)
Score 100
Code Size 468 Byte
Status AC
Exec Time 2 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 3
Set Name Test Cases
All 10_random_to_kyo.txt, 20_noised_tokyoto.txt, 99_teuchi.txt
Case Name Status Exec Time Memory
10_random_to_kyo.txt AC 2 ms 256 KB
20_noised_tokyoto.txt AC 2 ms 256 KB
99_teuchi.txt AC 2 ms 256 KB