結果
問題 |
No.594 壊れた宝物発見機
|
ユーザー |
![]() |
提出日時 | 2017-11-11 00:19:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,722 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 28,000 KB |
平均クエリ数 | 201.00 |
最終ジャッジ日時 | 2024-07-16 14:41:15 |
合計ジャッジ時間 | 4,630 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 20 |
ソースコード
import sys ans = [0,0,0] ans2 = [-1,-1,-1] while ans != ans2: ans2[:] = ans[:] for i in range(3): up = 100 down = -100 if i == 0: while up != down: print("?", up, ans[1], ans[2]) sys.stdout.flush() d1 = int(input()) sys.stdout.flush() print("?", down, ans[1], ans[2]) sys.stdout.flush() d2 = int(input()) sys.stdout.flush() if d1 <= d2: down = (up + down)//2 else: up = (up + down)//2 - 1 elif i == 1: while up != down: print("?", ans[0], up, ans[2]) sys.stdout.flush() d1 = int(input()) sys.stdout.flush() print("?", ans[0], down, ans[2]) sys.stdout.flush() d2 = int(input()) sys.stdout.flush() if d1 <= d2: down = (up + down)//2 else: up = (up + down)//2 -1 elif i == 2: while up != down: print("?", ans[0], ans[1], up) sys.stdout.flush() d1 = int(input()) sys.stdout.flush() print("?", ans[0], ans[1], down) sys.stdout.flush() d2 = int(input()) sys.stdout.flush() if d1 <= d2: down = (up + down)//2 else: up = (up + down)//2 -1 ans[i] = up print("!", ans[0], ans[1], ans[2]) sys.stdout.flush()