結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | ikd |
提出日時 | 2017-11-16 15:54:40 |
言語 | D (dmd 2.106.1) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 836 bytes |
コンパイル時間 | 38 ms |
コンパイル使用メモリ | 6,912 KB |
最終ジャッジ日時 | 2024-11-14 20:15:36 |
合計ジャッジ時間 | 355 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
Main.d(18): Error: `ask(m - 1, y, z) > ask(m, y, z) ? l : r` must be surrounded by parentheses when next to operator `=` Main.d(24): Error: `ask(x, m - 1, z) > ask(x, m, z) ? l : r` must be surrounded by parentheses when next to operator `=` Main.d(30): Error: `ask(x, y, m - 1) > ask(x, y, m) ? l : r` must be surrounded by parentheses when next to operator `=`
ソースコード
void main(){ import std.stdio, std.string, std.conv, std.algorithm; int ask(int x, int y, int z){ writeln("? ", x, " ", y, " ", z); stdout.flush(); auto d=readln.chomp.to!(int); return d; } void answer(int x, int y, int z){ writeln("! ", x, " ", y, " ", z); } int x, y, z; int l=-105, r=105; while(r-l>1){ auto m=(r+l)/2; ask(m-1, y, z)>ask(m, y, z) ? l : r = m; } x=l; l=-105, r=105; while(r-l>1){ auto m=(r+l)/2; ask(x, m-1, z)>ask(x, m, z) ? l : r = m; } y=l; l=-105, r=105; while(r-l>1){ auto m=(r+l)/2; ask(x, y, m-1)>ask(x, y, m) ? l : r = m; } z=l; answer(x, y, z); } void rd(T...)(ref T x){ import std.stdio, std.string, std.conv; auto l=readln.split; assert(l.length==x.length); foreach(i, ref e; x){ e=l[i].to!(typeof(e)); } }