Submission #2408369


Source Code Expand

#include<iostream>
#include<algorithm>
#include<map>
#include<vector>

using namespace std;

int main() {
	int n;
	cin >> n;
	int a[n],b[n];
	for(int i = 0; i < n; i++) {
		cin >> a[i] >> b[i];
	}
	int plus = 0;
	for(int i = n - 1; i >= 0; i--) {
		int nowa = a[i] + plus;
		if(nowa % b[i] == 0) continue;
		if(nowa <= b[i]) {
			plus += b[i] - nowa;
		} else {
			plus += b[i] - (nowa % b[i]);
		}



	}

	cout << plus << endl;



}

Submission Info

Submission Time
Task A - Multiple Array
User XzA_2123
Language C++14 (Clang 3.8.0)
Score 0
Code Size 467 Byte
Status WA
Exec Time 223 ms
Memory 1152 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
AC × 9
WA × 9
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 220 ms 1024 KB
02.txt WA 220 ms 1024 KB
03.txt WA 221 ms 1024 KB
04.txt WA 220 ms 1024 KB
05.txt WA 221 ms 1024 KB
06.txt WA 220 ms 1152 KB
07.txt AC 157 ms 1024 KB
08.txt WA 223 ms 1024 KB
09.txt AC 158 ms 1024 KB
10.txt WA 222 ms 1024 KB
11.txt AC 151 ms 1024 KB
12.txt AC 94 ms 1024 KB
13.txt WA 152 ms 1024 KB
14.txt AC 219 ms 1024 KB
15.txt AC 1 ms 256 KB
16.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB