# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
929982 | sofiefu | Ancient Machine 2 (JOI23_ancient2) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "ancient2.h"
using namespace std;
typedef long long ll;
#define int long long
#define vo vector
#define fi first
#define se second
#define pr(x) cerr << #x << " " << x << endl;
#define sz(x) x.size()
typedef vo<int> vi;
typedef pair<int, int> pii;
#define rep(i, a, b) for(ll i = (a); i<(b); i++)
ll const inf = LLONG_MAX, mxn = 51;
int Query(int m, vi a, vi b){
}
std::string Solve(int n){
string ans;
rep(i, 0, 1000){
int ret = Query(2, {0, 0}, {1, 1});
if(ret==0){
ans.pb('0');
}
else{
ans.pb('1');
}
}
return ans;
}