답안 #965981

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
965981 2024-04-19T08:57:35 Z nam_ntmp Lasers (NOI19_lasers) C++17
0 / 100
370 ms 936 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(len%2==0){
                cout<<(len*2)+1-l<<"\n";
            }
            else{
                cout<<(len*2)-l<<"\n";
            }
        }
    }
}

/*
10 1 
1 4

10 1 
1 5
*/
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Incorrect 0 ms 348 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Incorrect 0 ms 348 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 370 ms 936 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 370 ms 936 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Incorrect 0 ms 348 KB Output isn't correct
4 Halted 0 ms 0 KB -