답안 #148022

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
148022 2019-08-31T11:22:21 Z imsifile King of Chairs (FXCUP4_chairs) C++17
0 / 100
65 ms 6456 KB
#include "king.h"
 
long long SendInfo(std::vector<int> W, std::vector<int> C) {
	return 0;
}
#include "vassal.h"
#include <set>
using namespace std;
 
set<pair<int,int>> sets;
 
void Init(long long B, std::vector<int> C){
	int i=0;
	for(auto &x: C) sets.insert(make_pair(x,++i));
}
 
int Maid(int W){
	auto it = sets.lower_bound(make_pair(W,0));
	if(it == sets.end()) return 0;
	int v=it->second; sets.erase(it);
	return v;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 4 ms 900 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 55 ms 6320 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 65 ms 6456 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -