답안 #149720

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
149720 2019-09-01T07:01:24 Z Outfraware Boat People(#3577, c4big, bsyo2k, cepiloth) List of Unique Integers (FXCUP4_unique) C++17
0 / 100
5 ms 256 KB
#include "unique.h"

std::vector<int> PickUnique(int N) {
	UniqueCount(0, N-1);
	UniqueCount(1, N-2);
	return std::vector<int>({0, 0, 1, 0, 0});
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB Wrong
2 Halted 0 ms 0 KB -