답안 #965972

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
965972 2024-04-19T08:53:31 Z nam_ntmp Lasers (NOI19_lasers) C++17
컴파일 오류
0 ms 0 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 {
                cout<<(len*2)+1-l<<"\n";
            }
        }
    }
}

/*
10 1 
1 4

10 1 
1 5
*/

Compilation message

lasers.cpp: In function 'int main()':
lasers.cpp:19:13: error: expected '}' before 'else'
   19 |             else {
      |             ^~~~
lasers.cpp:14:26: note: to match this '{'
   14 |             if(len*2 < l){
      |                          ^