Submission #514987


Source Code Expand

n, a, b = gets.split(' ').map(&:to_i)
pos = 0
n.times do
  s, d = gets.split(' ')
  d = [b, [a, d.to_i].max].min
  if s == 'East'
    pos += d
  else
    pos -= d
  end
end

if pos > 0
  puts "East #{pos.abs}"
elsif pos < 0
  puts "West #{pos.abs}"
else
  puts '0'
end

Submission Info

Submission Time
Task B - 双子とスイカ割り
User hamadu
Language Ruby (2.1.5p273)
Score 100
Code Size 288 Byte
Status AC
Exec Time 64 ms
Memory 5120 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 33
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All test-01.txt, test-02.txt, test-03.txt, test-04.txt, test-05.txt, test-06.txt, test-07.txt, test-08.txt, test-09.txt, test-10.txt, test-11.txt, test-12.txt, test-13.txt, test-14.txt, test-15.txt, test-16.txt, test-17.txt, test-18.txt, test-19.txt, test-20.txt, test-21.txt, test-22.txt, test-23.txt, test-24.txt, test-25.txt, test-26.txt, test-27.txt, test-28.txt, test-29.txt, test-30.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
sample-01.txt AC 57 ms 4972 KB
sample-02.txt AC 55 ms 4968 KB
sample-03.txt AC 55 ms 5096 KB
test-01.txt AC 55 ms 4968 KB
test-02.txt AC 54 ms 4972 KB
test-03.txt AC 55 ms 4972 KB
test-04.txt AC 56 ms 4968 KB
test-05.txt AC 55 ms 5092 KB
test-06.txt AC 55 ms 4972 KB
test-07.txt AC 55 ms 4968 KB
test-08.txt AC 55 ms 4972 KB
test-09.txt AC 55 ms 4968 KB
test-10.txt AC 55 ms 5088 KB
test-11.txt AC 56 ms 5004 KB
test-12.txt AC 55 ms 5092 KB
test-13.txt AC 56 ms 4968 KB
test-14.txt AC 55 ms 4972 KB
test-15.txt AC 55 ms 4972 KB
test-16.txt AC 55 ms 4972 KB
test-17.txt AC 56 ms 4940 KB
test-18.txt AC 55 ms 4972 KB
test-19.txt AC 55 ms 4968 KB
test-20.txt AC 64 ms 4968 KB
test-21.txt AC 59 ms 5120 KB
test-22.txt AC 59 ms 4972 KB
test-23.txt AC 58 ms 5016 KB
test-24.txt AC 58 ms 4968 KB
test-25.txt AC 58 ms 4972 KB
test-26.txt AC 57 ms 4972 KB
test-27.txt AC 63 ms 4964 KB
test-28.txt AC 60 ms 5056 KB
test-29.txt AC 63 ms 4972 KB
test-30.txt AC 59 ms 4976 KB