Submission #1725885


Source Code Expand

n,a,b = gets.strip.split(' ').map(&:to_i)

str = gets.strip
cj = 0
co = 0
str.each_char do |c|
  if c.eql? 'a'

    if cj + co + 1 <= a+b
      cj+=1
      puts "Yes"
    else
      puts "No"
    end
  elsif c.eql? 'b'

    if cj + co + 1 <= a+b and co + 1 <= b
      co+=1
      puts "Yes"
    else
      puts "No"
    end
  else
    puts "No"
  end
end

Submission Info

Submission Time
Task B - Qualification simulator
User hirokizaka46
Language Ruby (2.3.3)
Score 200
Code Size 381 Byte
Status AC
Exec Time 70 ms
Memory 2428 KB

Compile Error

./Main.rb:1: warning: assigned but unused variable - n

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 13
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 AC 67 ms 2300 KB
02.txt AC 69 ms 2300 KB
03.txt AC 69 ms 2300 KB
04.txt AC 69 ms 2300 KB
05.txt AC 59 ms 2172 KB
06.txt AC 66 ms 2300 KB
07.txt AC 68 ms 2428 KB
08.txt AC 69 ms 2300 KB
09.txt AC 63 ms 2300 KB
10.txt AC 70 ms 2300 KB
s1.txt AC 8 ms 1788 KB
s2.txt AC 8 ms 1788 KB
s3.txt AC 8 ms 1788 KB