Submission #1300863


Source Code Expand

#include <iostream>
#include <cstdio>
#include <unordered_map>
#include <unordered_set>
#include <algorithm>
#include <cstring>
#include <stack>
#include <queue>
#include <vector>
#include <map>
#include <cmath>
#include <cassert>
#include <set>
#include <complex>
#include <bitset>
#include <sstream>
#include <iomanip>
#include <numeric>
#include <climits>
#include <string>


#define mp make_pair
#define fi first
#define se second
#define pb push_back
#define endl '\n'
#define EPS 1e-7
#define io  ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define file freopen ("in.txt", "r", stdin),freopen ("out.txt", "w", stdout);
#define mid ((st + en) >> 1)
#define fileIn freopen ("in.txt", "r", stdin);
#define all(v) ((v).begin()), ((v).end())
#define de(a) #a<<" = "<<a


using namespace std;

typedef pair<int, int> pii;
typedef long long ll;
typedef unsigned long long ull;

const int N = 3e5 + 5;

int n;
int a[N], b[N];

int main () {
#ifndef ONLINE_JUDGE
  //fileIn;
#endif
  cin >> n;
  for(int i = 0; i < n; i++) {
    scanf("%d%d", &a[i], &b[i]);
  }
  ll cnt = 0;
  for(int i = n - 1; i >= 0; i--) {
    cnt += (b[i] - (a[i] + cnt) % b[i]) % b[i];
  }
  cout << cnt << endl;
  return 0;
}

Submission Info

Submission Time
Task A - Multiple Array
User omarkhaledd
Language C++14 (GCC 5.4.1)
Score 300
Code Size 1269 Byte
Status AC
Exec Time 25 ms
Memory 1024 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:54:32: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d", &a[i], &b[i]);
                                ^

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 24 ms 1024 KB
02.txt AC 24 ms 1024 KB
03.txt AC 24 ms 1024 KB
04.txt AC 24 ms 1024 KB
05.txt AC 24 ms 1024 KB
06.txt AC 24 ms 1024 KB
07.txt AC 20 ms 1024 KB
08.txt AC 25 ms 1024 KB
09.txt AC 21 ms 1024 KB
10.txt AC 25 ms 1024 KB
11.txt AC 20 ms 1024 KB
12.txt AC 16 ms 1024 KB
13.txt AC 20 ms 1024 KB
14.txt AC 25 ms 1024 KB
15.txt AC 1 ms 256 KB
16.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB