結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | kotatsugame |
提出日時 | 2019-10-12 18:40:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 671 bytes |
コンパイル時間 | 659 ms |
コンパイル使用メモリ | 66,816 KB |
実行使用メモリ | 25,488 KB |
平均クエリ数 | 76.90 |
最終ジャッジ日時 | 2024-07-16 18:11:39 |
合計ジャッジ時間 | 4,579 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
24,580 KB |
testcase_01 | AC | 104 ms
24,580 KB |
testcase_02 | AC | 106 ms
25,220 KB |
testcase_03 | AC | 105 ms
24,964 KB |
testcase_04 | AC | 103 ms
24,580 KB |
testcase_05 | AC | 101 ms
25,220 KB |
testcase_06 | AC | 102 ms
25,220 KB |
testcase_07 | AC | 105 ms
25,476 KB |
testcase_08 | AC | 103 ms
25,208 KB |
testcase_09 | AC | 105 ms
24,848 KB |
testcase_10 | AC | 102 ms
25,232 KB |
testcase_11 | AC | 102 ms
24,592 KB |
testcase_12 | AC | 101 ms
25,232 KB |
testcase_13 | AC | 103 ms
25,232 KB |
testcase_14 | AC | 106 ms
25,232 KB |
testcase_15 | AC | 102 ms
25,232 KB |
testcase_16 | AC | 104 ms
25,488 KB |
testcase_17 | AC | 104 ms
25,232 KB |
testcase_18 | AC | 104 ms
24,592 KB |
testcase_19 | AC | 104 ms
24,848 KB |
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 10 | main() | ^~~~ main.cpp: In function 'int main()': main.cpp:28:25: warning: 'Y' is used uninitialized [-Wuninitialized] 28 | int Y=f(X,L,0)>f(Y,R,0)?R:L; | ~^~~~~~~ main.cpp:28:13: note: 'Y' was declared here 28 | int Y=f(X,L,0)>f(Y,R,0)?R:L; | ^
ソースコード
#include<iostream> #include<algorithm> using namespace std; int f(int x,int y,int z) { cout<<"? "<<x<<" "<<y<<" "<<z<<endl; int ans;cin>>ans; return ans; } main() { int L=-101,R=101; while(R-L>2) { int M1=(L+L+R)/3,M2=(L+R+R)/3; if(f(M1,0,0)>f(M2,0,0))L=M1; else R=M2; } int X=f(L,0,0)>f(R,0,0)?R:L; X=L+R>>1; L=-101,R=101; while(R-L>2) { int M1=(L+L+R)/3,M2=(L+R+R)/3; if(f(X,M1,0)>f(X,M2,0))L=M1; else R=M2; } int Y=f(X,L,0)>f(Y,R,0)?R:L; Y=L+R>>1; L=-101,R=101; while(R-L>2) { int M1=(L+L+R)/3,M2=(L+R+R)/3; if(f(X,Y,M1)>f(X,Y,M2))L=M1; else R=M2; } int Z=f(X,Y,L)>f(X,Y,R)?R:L; Z=L+R>>1; cout<<"! "<<X<<" "<<Y<<" "<<Z<<endl; }