Submission #1300858


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 0
Code Size 1267 Byte
Status WA
Exec Time 1 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:32:46: warning: ignoring return value of ‘FILE* freopen(const char*, const char*, FILE*)’, declared with attribute warn_unused_result [-Wunused-result]
 #define fileIn freopen ("in.txt", "r", stdin);
                                              ^
./Main.cpp:50:3: note: in expansion of macro ‘fileIn’
   fileIn;
   ^
./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 0 / 300
Status
WA × 2
AC × 6
WA × 12
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 WA 1 ms 256 KB
02.txt WA 1 ms 256 KB
03.txt WA 1 ms 256 KB
04.txt WA 1 ms 256 KB
05.txt WA 1 ms 256 KB
06.txt WA 1 ms 256 KB
07.txt AC 1 ms 256 KB
08.txt WA 1 ms 256 KB
09.txt AC 1 ms 256 KB
10.txt WA 1 ms 256 KB
11.txt WA 1 ms 256 KB
12.txt AC 1 ms 256 KB
13.txt WA 1 ms 256 KB
14.txt AC 1 ms 256 KB
15.txt AC 1 ms 256 KB
16.txt AC 1 ms 256 KB
s1.txt WA 1 ms 256 KB
s2.txt WA 1 ms 256 KB