제출 #1042384

#제출 시각아이디문제언어결과실행 시간메모리
1042384Alihan_8수천개의 섬 (IOI22_islands)C++17
0 / 100
1 ms600 KiB
#include "islands.h"

#include <variant>
#include <vector>

#include <bits/stdc++.h>

using namespace std;

std::variant<bool, std::vector<int>> find_journey(
    int N, int M, std::vector<int> U, std::vector<int> V) {
  
	int n = N, m = M;
	
	return false;
}

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

islands.cpp: In function 'std::variant<bool, std::vector<int, std::allocator<int> > > find_journey(int, int, std::vector<int>, std::vector<int>)':
islands.cpp:13:6: warning: unused variable 'n' [-Wunused-variable]
   13 |  int n = N, m = M;
      |      ^
islands.cpp:13:13: warning: unused variable 'm' [-Wunused-variable]
   13 |  int n = N, m = M;
      |             ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...