Submission #1073881


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 5;
long long a[N], b[N];
int n;

int main() {
    //freopen("009A.txt", "r", stdin);
    cin >> n;
    for (int i = 1; i <= n; i++) {
        cin >> a[i] >> b[i];
        a[i] %= b[i];
    }
    long long res = 0;
    long long cnt = 0;
    for (int i = n; i >= 1; i--) {
        long long tmp = b[i] - a[i] - cnt;
        tmp %= b[i];
        if (tmp < 0) tmp += b[i];
        res += tmp;
        cnt += tmp;
    }
    cout << res << endl;
}

Submission Info

Submission Time
Task A - Multiple Array
User kakajapan31
Language C++14 (GCC 5.4.1)
Score 300
Code Size 533 Byte
Status AC
Exec Time 148 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 135 ms 1792 KB
02.txt AC 134 ms 1792 KB
03.txt AC 134 ms 1792 KB
04.txt AC 134 ms 1792 KB
05.txt AC 134 ms 1792 KB
06.txt AC 131 ms 1792 KB
07.txt AC 87 ms 1792 KB
08.txt AC 141 ms 1920 KB
09.txt AC 87 ms 1792 KB
10.txt AC 142 ms 1792 KB
11.txt AC 88 ms 1920 KB
12.txt AC 38 ms 1792 KB
13.txt AC 87 ms 1792 KB
14.txt AC 148 ms 1920 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