Submission #1073384


Source Code Expand

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

// why am I so weak

int n;
long long a[100055], b[100055];

int main() {
	scanf("%d", &n);

	for (int i = 0; i < n; i++) {
		scanf("%lld %lld", &a[i], &b[i]);
	}

	long long res = 0;

	for (int i = n - 1; i >= 0; i--) {
		a[i] += res;

		long long cool = (a[i] +  b[i] - 1) / b[i] * b[i];

		res += cool - a[i];
	}

	cout << res;

	return 0;
}

Submission Info

Submission Time
Task A - Multiple Array
User IanWong
Language C++14 (GCC 5.4.1)
Score 0
Code Size 421 Byte
Status WA
Exec Time 28 ms
Memory 1792 KB

Compile Error

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

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
WA × 2
WA × 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 WA 26 ms 1792 KB
02.txt WA 26 ms 1792 KB
03.txt WA 27 ms 1792 KB
04.txt WA 27 ms 1792 KB
05.txt WA 27 ms 1792 KB
06.txt WA 26 ms 1792 KB
07.txt WA 22 ms 1792 KB
08.txt WA 27 ms 1792 KB
09.txt WA 23 ms 1792 KB
10.txt WA 27 ms 1792 KB
11.txt WA 22 ms 1792 KB
12.txt WA 18 ms 1792 KB
13.txt WA 22 ms 1792 KB
14.txt WA 28 ms 1792 KB
15.txt WA 3 ms 256 KB
16.txt WA 3 ms 256 KB
s1.txt WA 3 ms 256 KB
s2.txt WA 3 ms 256 KB