답안 #282381

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
282381 2020-08-24T11:17:08 Z iliccmarko 곤돌라 (IOI14_gondola) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl "\n"

using namespace std;


int valid(int n, int p[])
{
    for(int i = 1;i<n;i++)
    {
        if(p[i]==1&&p[i-1]<n)
            return 0;
        if(p[i]!=p[i-1]-1&&p[i-1]<=n)
            return 0;
    }
    return 1;
}

int replacement(int n, int gondolaSeq[], int replacementSeq[]);
{
    return 1;
}

int countReplacement(int n, int inputSeq[])
{
    return 1;
}

Compilation message

gondola.cpp:22:1: error: expected unqualified-id before '{' token
   22 | {
      | ^