# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
50664 | ayhcbagnop | 고속도로 설계 (CEOI12_highway) | C++14 | 컴파일 에러 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "office.h"
using namespace std;
int main()
{
int n = getN();
vector<int> bad, good;
good.pb(1);
for(int i = 2; i<= n; i++)
{
if(isOnLine(1, 1, i)) good.pb(i);
else bad.pb(i);
}
Answer(good[0], good[1], bad[0], bad[1]);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
highway.cpp: In function 'int main()': highway.cpp:6:10: error: 'getN' was not declared in this scope int n = getN(); ^~~~ highway.cpp:6:10: note: suggested alternative: 'GetN' int n = getN(); ^~~~ GetN highway.cpp:8:7: error: 'class std::vector<int>' has no member named 'pb' good.pb(1); ^~ highway.cpp:11:30: error: 'class std::vector<int>' has no member named 'pb' if(isOnLine(1, 1, i)) good.pb(i); ^~ highway.cpp:12:12: error: 'class std::vector<int>' has no member named 'pb' else bad.pb(i); ^~ office.c: In function 'int isOnLine(int, int, int)': office.c:85:29: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(0, "Protocol error"); ^ office.c:88:29: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(0, "Protocol error"); ^ office.c:92:37: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(false, "Too many questions"); ^ office.c:83:7: warning: unused variable 'i' [-Wunused-variable] int i; ^ office.c: In function 'void Answer(int, int, int, int)': office.c:123:29: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(0, "Protocol error"); ^ office.c:128:44: warning: suggest parentheses around '&&' within '||' [-Wparentheses] if( (-_Apa[na1]==_N-3) && (na2!=na1) && (nb2!=na1) || ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ office.c:130:30: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(true, "Correct"); ^ office.c:132:36: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(false, "Wrong answer"); ^ office.c:134:44: warning: suggest parentheses around '&&' within '||' [-Wparentheses] if( (-_Apa[na2]==_N-3) && (na1!=na2) && (nb1!=na2) || ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ office.c:136:30: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(true, "Correct"); ^ office.c:138:36: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(false, "Wrong answer"); ^ office.c:140:33: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(false, "Wrong answer"); ^ office.c:142:23: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] _Fin(true, "Correct"); ^ office.c:120:27: warning: unused variable 'pont' [-Wunused-variable] int na1, nb1, na2, nb2, pont; ^~~~ office.c: In function 'void _doInit()': office.c:33:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d", &_N); ~~~~~^~~~~~~~~~~