Submission #1074514


Source Code Expand

#include<iostream>
#include<list>
#include<string>
#include<cstdio>
#include<map>
#include<utility>
#include<queue>
#include<stack>
#include<vector>

using namespace std;

int main() {
  int n;
  cin >> n;
  vector<long long> a(n);
  vector<long long> b(n);

  for(int i = 0; i < n; i++) {
    cin >> a[i] >> b[i];
  }

  long long ans = 0;
  for(int i = n-1; i >= 0; i--) {

    if(a[i]+ans > b[i]) {
      int j = 1;
      while(a[i]+ans > b[i]*(++j));
      ans += b[i]*j - (a[i]+ans);
    }else {
      ans += b[i] - (a[i]+ans);
    }
  }
  cout << ans << endl;
  return 0;
}

Submission Info

Submission Time
Task A - Multiple Array
User aru37r89h
Language C++14 (Clang 3.8.0)
Score 0
Code Size 616 Byte
Status WA
Exec Time 2102 ms
Memory 1920 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
AC × 5
WA × 3
TLE × 10
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 TLE 2102 ms 1792 KB
02.txt TLE 2102 ms 1792 KB
03.txt TLE 2102 ms 1792 KB
04.txt TLE 2102 ms 1792 KB
05.txt TLE 2102 ms 1792 KB
06.txt TLE 2102 ms 1792 KB
07.txt TLE 2102 ms 1792 KB
08.txt AC 1037 ms 1792 KB
09.txt TLE 2102 ms 1792 KB
10.txt TLE 2102 ms 1792 KB
11.txt AC 154 ms 1792 KB
12.txt WA 95 ms 1792 KB
13.txt TLE 2102 ms 1792 KB
14.txt AC 221 ms 1920 KB
15.txt WA 3 ms 256 KB
16.txt WA 3 ms 256 KB
s1.txt AC 3 ms 256 KB
s2.txt AC 3 ms 256 KB