답안 #448025

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
448025 2021-07-28T14:28:25 Z bigo Awesome Arrowland Adventure (eJOI19_adventure) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#include <cmath>
using namespace std;
typedef unsigned long long ll
int main() {
	int n, m;
	cin >> n >> m;
	vector<char>vec(m);
	for (int i = 0; i < m; i++) {
		cin >> vec[i];
	}
	bool flag = true;
	for (int i = 0; i < m - 1; i++) {
		if (vec[i] == 'X') {
			cout << -1;
			flag = false;
		}
	}
	if (flag)
		cout << 0;
}

Compilation message

adventure.cpp:5:1: error: expected initializer before 'int'
    5 | int main() {
      | ^~~