-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA_Lever.cpp
More file actions
32 lines (32 loc) · 740 Bytes
/
Copy pathA_Lever.cpp
File metadata and controls
32 lines (32 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include<bits/stdc++.h>
using namespace std;
int main(){
int t ;
cin >> t ;
while ( t--){
int n ;
cin >> n ;
vector <int> a (n);
vector <int> b (n);
for ( int i = 0 ; i < n ; i++){
cin >> a[i] ;
}
for ( int i = 0 ; i < n ; i++){
cin >> b[i] ;
}
int iteration = 1;
for ( int i = 0 ; i < n ; i++ ){
for ( int j = 0 ; j < 10 ; j ++){
if ( a[i] > b[i]){
a[i]--;
iteration++ ;
}
else if (a[i] < b[i]){
break;
}
}
}
cout << iteration << endl;
}
return 0;
}