Submission #1073892


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

#define in cin
#define out cout

#define REP(i,n) for(int i=0; i<n; i++)
#define REP2(i,s,e) for(int i=s; i<e; i++)
#define REPE(i,s,e) for(int i=s; i<=e; i++)
#define REPR(i,s,e) for(int i=s; i>=e; i--)

#define all(v) v.begin(), v.end()
#define pb push_back

#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define rd(n) scanf("%d", &n)

#define x first
#define y second
#define intINF 2147483647
#define llINF 9223372036854775807LL
#define MOD 1000000007

int main()
{
#ifndef ONLINE_JUDGE
    //freopen("in.txt", "r", stdin);
#endif

    int n; in >> n;
    ll A[101010], B[101010];
    REP(i, n) in >> A[i] >> B[i];

    ll res = 0LL;
    ll t = 0LL;
    REPR(i,n-1,0)
    {
        A[i] += t;
        A[i] %= B[i];
        if(A[i])
        {
            t += B[i]-A[i];
            res += B[i]-A[i];
        }
    }

    out << res << endl;

    return 0;
}

Submission Info

Submission Time
Task A - Multiple Array
User exqt
Language C++14 (GCC 5.4.1)
Score 300
Code Size 988 Byte
Status AC
Exec Time 147 ms
Memory 1920 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 131 ms 1792 KB
02.txt AC 132 ms 1792 KB
03.txt AC 134 ms 1792 KB
04.txt AC 133 ms 1792 KB
05.txt AC 123 ms 1792 KB
06.txt AC 133 ms 1792 KB
07.txt AC 87 ms 1792 KB
08.txt AC 140 ms 1792 KB
09.txt AC 86 ms 1792 KB
10.txt AC 141 ms 1920 KB
11.txt AC 88 ms 1792 KB
12.txt AC 37 ms 1792 KB
13.txt AC 88 ms 1792 KB
14.txt AC 147 ms 1792 KB
15.txt AC 3 ms 256 KB
16.txt AC 3 ms 256 KB
s1.txt AC 3 ms 256 KB
s2.txt AC 3 ms 256 KB