Submission #1080095


Source Code Expand

n=gets.to_i
ans=0
a=Array.new(n)
b=Array.new(n)
n.times{|i|
    a[n - 1 - i],b[n - 1 - i]=gets.split.map(&:to_i) 
    }
n.times{|i|
    m=(a[i]+ans)%b[i]
    ans += (m==0 ? 0 : b[i] - m) 
    }
p ans

Submission Info

Submission Time
Task A - Multiple Array
User fine
Language Ruby (2.3.3)
Score 300
Code Size 210 Byte
Status AC
Exec Time 171 ms
Memory 3324 KB

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 171 ms 3324 KB
02.txt AC 169 ms 3324 KB
03.txt AC 169 ms 3324 KB
04.txt AC 168 ms 3324 KB
05.txt AC 169 ms 3324 KB
06.txt AC 168 ms 3324 KB
07.txt AC 159 ms 3324 KB
08.txt AC 169 ms 3324 KB
09.txt AC 157 ms 3324 KB
10.txt AC 171 ms 3324 KB
11.txt AC 156 ms 3324 KB
12.txt AC 145 ms 3324 KB
13.txt AC 157 ms 3324 KB
14.txt AC 168 ms 3324 KB
15.txt AC 11 ms 1788 KB
16.txt AC 10 ms 1788 KB
s1.txt AC 11 ms 1788 KB
s2.txt AC 11 ms 1788 KB