Submission #2177842


Source Code Expand

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

using ll = long long;
using P = pair<int, int>;

const int INF = 1e9;
const int MOD = 1e9 + 7;

// 4近傍、8近傍
int dx[] = {1, 0, -1, 0, 1, -1, -1, 1};
int dy[] = {0, 1, 0, -1, 1, 1, -1, -1};

int main() {
  // 入力
  int N;
  cin >> N;
  int a[N], b[N];
  for (int i = 0; i < N; i++) cin >> a[i] >> b[i];

  // N項目から決めていく
  ll ans = 0;
  for (int i = N - 1; i >= 0; i--) {
    if (a[i] + ans < b[i]) {
      ans += b[i] - (a[i] + ans);
    } else if (a[i] + ans > b[i]) {
      if ((a[i] + ans) % b[i] != 0) {
        int s = (a[i] + ans) / b[i];
        ans += (s + 1) * b[i] - (a[i] + ans);
      }
    }
  }

  // 解答
  cout << ans << endl;

  return 0;
}

Submission Info

Submission Time
Task A - Multiple Array
User university
Language C++14 (GCC 5.4.1)
Score 0
Code Size 773 Byte
Status WA
Exec Time 116 ms
Memory 1024 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
AC × 5
WA × 13
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 105 ms 1024 KB
02.txt WA 107 ms 1024 KB
03.txt WA 107 ms 1024 KB
04.txt WA 105 ms 1024 KB
05.txt WA 107 ms 1024 KB
06.txt WA 105 ms 1024 KB
07.txt AC 73 ms 1024 KB
08.txt WA 110 ms 1024 KB
09.txt WA 73 ms 1024 KB
10.txt WA 110 ms 1024 KB
11.txt AC 71 ms 1024 KB
12.txt WA 36 ms 1024 KB
13.txt WA 70 ms 1024 KB
14.txt AC 116 ms 1024 KB
15.txt WA 1 ms 256 KB
16.txt WA 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB