#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int m,k;
cin>>m>>k;
int a[n];
int b[m];
int sum1=0;
int sum2=0;
int t1=0;
for(int i=0;i<n;i++){
cin>>a[i];
if(a[i]<k){
t1++;
}else{
sum1=sum1+a[i];
}
}
for(int i=0;i<m;i++){
cin>>b[i];
sum2=sum2+b[i];
}
if(m<k){
t1++;
}
if(sum1>sum2){
t1++;
}
if(t1>0){
cout<<"Impossible";
}else{
cout<<sum2-sum1;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |