Submission #1073884


Source Code Expand

#include <iostream>
#include <vector>

using namespace std;

int main()
{
	int N;
	cin >> N;
	vector<long long> A(N), 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) {
		auto x = A[i] + ans;
		if (x < B[i]) {
			ans += B[i] - x;
		}
		else {
			ans += (x + B[i] - 1) / B[i] * B[i] - x;
		}
	}
	cout << ans << endl;
}

Submission Info

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

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
AC × 14
WA × 4
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 86 ms 1792 KB
02.txt AC 83 ms 1792 KB
03.txt AC 83 ms 1792 KB
04.txt AC 83 ms 1792 KB
05.txt AC 83 ms 1792 KB
06.txt AC 83 ms 1792 KB
07.txt AC 60 ms 1792 KB
08.txt AC 87 ms 1792 KB
09.txt WA 61 ms 1792 KB
10.txt AC 87 ms 1792 KB
11.txt AC 60 ms 1792 KB
12.txt WA 37 ms 1792 KB
13.txt AC 60 ms 1792 KB
14.txt AC 90 ms 1792 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