Submission #1307305


Source Code Expand

#include<iostream>
#include<map>
#include<set>
#include<string>
#include<algorithm>
#include<cmath>
#include<vector>

using namespace std;

typedef long long ll;
typedef unsigned long long ull;

const int inf = 999999999;
const double pi = acos(-1);

#define rep(i,m,n) for(int i = (m); i < (int)(n); i++)
#define mod(i) ((i)%(ll)(1e9 + 7))
#define divm(a,b) (mod(a * modpow((ll)b,(ll)(1e9+5))))
#define rsort(a,b,c) sort(a, b, greater<c>())

ll modpow(ll i,ll j){ ll tmp=1; while(j){ if(j%2)tmp=mod(tmp*i);i=mod(i*i);j/=2;}return tmp;}

///////////////////////////////////////////////////////////////////////////
pair<ll,ll> p[100005] = {};

int main(){
	int n;
	cin >> n;
	ll cnt = 0;

    rep(i,0,n)cin >> p[n-1-i].first >> p[n-1-i].second;
    
	rep(i,0,n){
       ll a = p[i].first,b = p[i].second;
       //cout << a+cnt << " " << b <<  " " ;
       if( a+cnt < b){
            cnt += b-a-cnt;
       }else{
            if((a+cnt)%b != 0){
                
                cnt += b-((a+cnt)%b);  
            }
       } 
       //cout << cnt << endl;
	}

	cout <<cnt << endl;
	
	return 0;
}

Submission Info

Submission Time
Task A - Multiple Array
User hirata0517masato
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1146 Byte
Status WA
Exec Time 86 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 80 ms 1792 KB
02.txt AC 80 ms 1792 KB
03.txt AC 80 ms 1792 KB
04.txt AC 80 ms 1792 KB
05.txt AC 80 ms 1792 KB
06.txt AC 80 ms 1792 KB
07.txt AC 57 ms 1792 KB
08.txt AC 84 ms 1792 KB
09.txt WA 58 ms 1792 KB
10.txt AC 83 ms 1792 KB
11.txt AC 57 ms 1792 KB
12.txt WA 34 ms 1792 KB
13.txt AC 57 ms 1792 KB
14.txt AC 86 ms 1792 KB
15.txt WA 2 ms 1792 KB
16.txt WA 2 ms 1792 KB
s1.txt AC 2 ms 1792 KB
s2.txt AC 2 ms 1792 KB