Submission #1063000

# Submission time Handle Problem Language Result Execution time Memory
1063000 2024-08-17T13:10:40 Z beaconmc A Light Inconvenience (CEOI23_light) C++17
0 / 100
1 ms 428 KB
#include "light.h"

#include <bits/stdc++.h>
 
typedef long long ll;
#define FOR(i,x,y) for(ll i=x; i<y; i++)
#define FORNEG(i,x,y) for(ll i=x; i>y; i--)
 
using namespace std;

int n;

void prepare(){
	n = 1;
}

pair<long long, std::vector<long long>> join(long long p){
	n += p;
	set<ll> stuff;
	stuff.insert(1);
	stuff.insert(n);
	FOR(i,0,70){
		if (n - (1<<i) > 1) stuff.insert(n - (1<<i));
	}
	vector<ll> real;
	for (auto&i : stuff) real.push_back(i);
	

	return {p*5, real};


}

std::pair<long long, std::vector<long long>> leave(long long p){
	n -= p;
	set<ll> stuff;
	stuff.insert(1);
	stuff.insert(n);
	FOR(i,0,70){
		if (n - (1<<i) > 1) stuff.insert(n - (1<<i));
	}
	vector<ll> real;
	for (auto&i : stuff) real.push_back(i);
	

	return {p*5, real};

}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 1 ms 340 KB Not correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 1 ms 344 KB Not correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 1 ms 344 KB Not correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 1 ms 344 KB Not correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 1 ms 344 KB Not correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 1 ms 344 KB Not correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Partially correct 1 ms 344 KB Partially correct
2 Incorrect 0 ms 428 KB Not correct
3 Halted 0 ms 0 KB -