Submission #1725870


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 0
Code Size 381 Byte
Status WA
Exec Time 70 ms
Memory 2300 KB

Compile Error

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

Judge Result

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