Submission #1662242


Source Code Expand

#include<iostream>
#include<fstream>
#include<stdio.h>
#include<string>
#include<vector>
#include<map>
#include<math.h>
#include<algorithm>
#include<iomanip>
#include<set>

using namespace std;

int main() {
  int n, a, b;
  string s;
  cin >> n >> a >> b >> s;
  int over = 0;
  int cnt = 0;
  for(int i = 0; i < s.size(); i++) {
    if(s[i] == 'c') {
      cout << "No" << endl;
    }
    if(s[i] == 'a') {
      if(cnt < a + b) {
        cnt++;
        cout << "Yes" << endl;
      } else {
        cout << "No" << endl;
      }
    }
    if(s[i] == 'b') {
      if(cnt < a + b && over < b) {
        over++; cnt++;
        cout << "Yes" << endl;
      } else {
        cout << endl;
      }
    }
  }
  return 0;
}

Submission Info

Submission Time
Task B - Qualification simulator
User ninja7
Language C++14 (GCC 5.4.1)
Score 0
Code Size 761 Byte
Status WA
Exec Time 156 ms
Memory 896 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 1
WA × 2
AC × 5
WA × 8
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt WA 152 ms 768 KB
02.txt WA 151 ms 768 KB
03.txt AC 155 ms 768 KB
04.txt AC 156 ms 768 KB
05.txt WA 134 ms 640 KB
06.txt WA 150 ms 640 KB
07.txt AC 155 ms 896 KB
08.txt WA 153 ms 768 KB
09.txt AC 152 ms 768 KB
10.txt WA 149 ms 768 KB
s1.txt WA 1 ms 256 KB
s2.txt WA 1 ms 256 KB
s3.txt AC 1 ms 256 KB