제출 #500656

#제출 시각아이디문제언어결과실행 시간메모리
500656HelloWorldArranging Shoes (IOI19_shoes)C++17
컴파일 에러
0 ms0 KiB
#include "shoes.h"
using namespace std;
using ll long long;
ll count_swaps ( vector <int> s) {
	ll x;
	if (s[0] < 0) {
		x = 0;
		return x;
	}
	x = 1;
	return 1;
}

컴파일 시 표준 에러 (stderr) 메시지

shoes.cpp:3:7: error: expected nested-name-specifier before 'll'
    3 | using ll long long;
      |       ^~
shoes.cpp:4:1: error: 'll' does not name a type
    4 | ll count_swaps ( vector <int> s) {
      | ^~