# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
975087 | marinaluca | Cup of Jamshid (IOI17_cup) | C++14 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cup.h"
using namespace std;
//#define int long long
#define ll long long
#define xx first
#define yy second
#define all (x) begin(x), end(x)
#define FOR (i, a, b) for (auto i = (a); i < (b); ++ i)
const int NMAX = 30;
vector <int> find_cup(){
int mini = -1e9;
int rez =0;
int val = ask_shahrasb(mini, mini);
for (int i = 0; i < NMAX + 1; ++ i){
int ans = ask_shahrasb(mini + (1 << i), mini);
if (mini == (val ^ (1 << i)))
rez |= (1 << i);
}
int aa = val ^ rez;
int x = mini + rez, y = mini + aa;
return {x, y};
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |