Submission #2092109


Source Code Expand

A,B=gets.to_i.times.map{gets.split.map &:to_i}.transpose
sum=0
(B.size-1).downto(0) do |i|
  r = (A[i]+sum)%B[i]
  sum += B[i]-r unless r.zero?
end
p sum

Submission Info

Submission Time
Task A - Multiple Array
User chabo
Language Ruby (2.3.3)
Score 300
Code Size 161 Byte
Status AC
Exec Time 175 ms
Memory 11132 KB

Compile Error

./Main.rb:1: warning: `&' interpreted as argument prefix

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 2
AC × 18
Set Name Test Cases
Sample s1.txt, s2.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
01.txt AC 174 ms 11132 KB
02.txt AC 175 ms 11132 KB
03.txt AC 170 ms 11132 KB
04.txt AC 170 ms 11132 KB
05.txt AC 170 ms 11132 KB
06.txt AC 171 ms 11132 KB
07.txt AC 159 ms 11132 KB
08.txt AC 175 ms 11132 KB
09.txt AC 158 ms 11132 KB
10.txt AC 172 ms 11132 KB
11.txt AC 162 ms 11132 KB
12.txt AC 151 ms 11132 KB
13.txt AC 165 ms 11132 KB
14.txt AC 169 ms 11132 KB
15.txt AC 7 ms 1788 KB
16.txt AC 7 ms 1788 KB
s1.txt AC 7 ms 1788 KB
s2.txt AC 7 ms 1788 KB