結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | cleantted |
提出日時 | 2017-11-11 00:22:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 137 ms / 2,000 ms |
コード長 | 1,722 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 27,752 KB |
平均クエリ数 | 90.10 |
最終ジャッジ日時 | 2024-07-16 14:41:26 |
合計ジャッジ時間 | 4,469 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
27,752 KB |
testcase_01 | AC | 134 ms
27,360 KB |
testcase_02 | AC | 130 ms
27,744 KB |
testcase_03 | AC | 133 ms
27,360 KB |
testcase_04 | AC | 137 ms
27,488 KB |
testcase_05 | AC | 137 ms
27,104 KB |
testcase_06 | AC | 134 ms
27,616 KB |
testcase_07 | AC | 132 ms
27,360 KB |
testcase_08 | AC | 134 ms
27,744 KB |
testcase_09 | AC | 135 ms
27,232 KB |
testcase_10 | AC | 133 ms
27,360 KB |
testcase_11 | AC | 133 ms
27,240 KB |
testcase_12 | AC | 136 ms
27,616 KB |
testcase_13 | AC | 131 ms
27,616 KB |
testcase_14 | AC | 133 ms
27,360 KB |
testcase_15 | AC | 130 ms
27,360 KB |
testcase_16 | AC | 133 ms
27,616 KB |
testcase_17 | AC | 132 ms
27,744 KB |
testcase_18 | AC | 135 ms
27,616 KB |
testcase_19 | AC | 133 ms
27,360 KB |
ソースコード
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 + 1 else: up = (up + down)//2 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 + 1 else: up = (up + down)//2 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 + 1 else: up = (up + down)//2 ans[i] = up print("!", ans[0], ans[1], ans[2]) sys.stdout.flush()