結果
問題 | No.253 ロウソクの長さ |
ユーザー | Tawara |
提出日時 | 2015-08-01 18:45:51 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 406 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 37.03 |
最終ジャッジ日時 | 2024-07-16 05:35:38 |
合計ジャッジ時間 | 6,419 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 36 ms
25,232 KB |
testcase_02 | AC | 37 ms
25,232 KB |
testcase_03 | AC | 35 ms
25,232 KB |
testcase_04 | AC | 36 ms
24,592 KB |
testcase_05 | AC | 37 ms
24,976 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 36 ms
24,848 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 35 ms
24,836 KB |
testcase_15 | AC | 37 ms
24,580 KB |
testcase_16 | AC | 36 ms
24,580 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 36 ms
25,220 KB |
testcase_20 | WA | - |
testcase_21 | AC | 36 ms
24,836 KB |
testcase_22 | AC | 35 ms
24,580 KB |
testcase_23 | WA | - |
testcase_24 | AC | 37 ms
25,220 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 37 ms
25,220 KB |
testcase_35 | WA | - |
ソースコード
import sys def ask(Y): print "? %d" % Y sys.stdout.flush() return int(raw_input()) def ans(Y): print "! %d" % Y res = ask(100) if res <= 0: for i in range(99): if ask(0) == 0: ans(i+1) break else: left = 100 right = 10**9 + 1 for i in range(99): mid = (left + right) / 2 res = ask(mid-i-1) if res == 0: ans(mid+i+1) break elif res == -1: right = mid else: left = mid