Submission #3327249


Source Code Expand

#include<bits/stdc++.h>
using namespace std;

int main(){
  int t;
  cin >> t;
  string s[110];
  for(int i = 0;i < t;i++){
    cin >> s[i];
  }
  int kekka = 0;
  for(int i = 0;i < t;i++){
    for(int j = 0;j < s[i].size();j++){
      if(s[i].substr( j, 5) == "kyoto" || s[i].substr( j, 5) == "tokyo"){
        kekka++;
        s[i].erase( j, 5);
      }
    }
  }
  cout << kekka << endl;
}

Submission Info

Submission Time
Task A - 東京都
User tyahan3278
Language C++14 (GCC 5.4.1)
Score 0
Code Size 412 Byte
Status WA
Exec Time 2 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
WA × 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 WA 2 ms 256 KB
20_noised_tokyoto.txt WA 2 ms 256 KB
99_teuchi.txt WA 2 ms 256 KB