# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
965984 |
2024-04-19T08:58:56 Z |
nam_ntmp |
Lasers (NOI19_lasers) |
C++17 |
|
370 ms |
1000 KB |
#include <bits/stdc++.h>
using namespace std;
int main(){
int l,r;
cin>>l>>r;
// sub 1
while(r--){
int X;
cin>>X;
while(X--){
int len;
cin>>len;
if(len*2 < l){
cout<<"0\n";
}
else if(len == l){
cout<<l<<"\n";
}
else if(l%2==0){
cout<<(len*2)+1-l<<"\n";
}
else{
cout<<(len*2)-l<<"\n";
}
}
}
}
/*
10 1
1 4
10 1
1 5
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
370 ms |
1000 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
370 ms |
1000 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |