結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | Lepton_s |
提出日時 | 2017-11-19 16:06:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,710 bytes |
コンパイル時間 | 956 ms |
コンパイル使用メモリ | 92,396 KB |
実行使用メモリ | 44,320 KB |
最終ジャッジ日時 | 2024-07-16 15:31:23 |
合計ジャッジ時間 | 7,355 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <algorithm> #include <climits> #include <cmath> #include <cstdio> #include <cstdlib> #include <ctime> #include <iostream> #include <sstream> #include <functional> #include <map> #include <string> #include <cstring> #include <vector> #include <queue> #include <stack> #include <deque> #include <set> #include <list> #include <numeric> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> P; const double PI = 3.14159265358979323846; const double EPS = 1e-12; const ll INF = 1LL<<29; const ll mod = 1e9+7; #define rep(i,n) for(int (i)=0;(i)<(ll)(n);++(i)) #define repd(i,n,d) for(ll (i)=0;(i)<(ll)(n);(i)+=(d)) #define all(v) (v).begin(), (v).end() #define pb(x) push_back(x) #define mp(x,y) make_pair((x),(y)) #define mset(m,v) memset((m),(v),sizeof(m)) #define chmin(X,Y) ((X)>(Y)?X=(Y),true:false) #define chmax(X,Y) ((X)<(Y)?X=(Y),true:false) #define fst first #define snd second #define UNIQUE(x) (x).erase(unique(all(x)),(x).end()) template<class T> ostream &operator<<(ostream &os, const vector<T> &v){int n=v.size();rep(i,n)os<<v[i]<<(i==n-1?"":" ");return os;} void answer(int *a){ printf("! %d %d %d\n", a[0], a[1], a[2]); } int ask(int *a){ printf("? %d %d %d\n", a[0], a[1], a[2]); int d; scanf("%d", &d); return d; } void calc(int *a, int p){ int lb = -150, ub = 150; while(ub-lb>5){ int lb2 = (2*lb+ub)/3; a[p] = lb2; int l = ask(a); int ub2 = (lb+2*ub)/3; a[p] = ub2; int r = ask(a); if(l<r) ub = ub2; else lb = lb2; } a[p] = lb; int x = ask(a); while(true){ a[p]++; int y = ask(a); if(y<x) continue; --a[p]; return; } } int main(){ int a[3] = {0, 0, 0}; rep(i, 3) calc(a, i); answer(a); return 0; }