結果

問題 No.253 ロウソクの長さ
ユーザー takakintakakin
提出日時 2020-06-23 22:35:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 409 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,736 KB
平均クエリ数 29.44
最終ジャッジ日時 2024-07-17 03:53:27
合計ジャッジ時間 4,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
26,696 KB
testcase_01 AC 62 ms
27,480 KB
testcase_02 AC 51 ms
27,352 KB
testcase_03 AC 52 ms
27,352 KB
testcase_04 AC 51 ms
27,096 KB
testcase_05 AC 54 ms
27,352 KB
testcase_06 AC 53 ms
27,352 KB
testcase_07 AC 53 ms
26,968 KB
testcase_08 AC 53 ms
26,840 KB
testcase_09 WA -
testcase_10 AC 53 ms
27,224 KB
testcase_11 AC 61 ms
27,096 KB
testcase_12 AC 55 ms
26,968 KB
testcase_13 AC 52 ms
26,840 KB
testcase_14 WA -
testcase_15 AC 52 ms
27,216 KB
testcase_16 AC 54 ms
27,432 KB
testcase_17 AC 56 ms
27,224 KB
testcase_18 AC 51 ms
27,096 KB
testcase_19 WA -
testcase_20 AC 52 ms
27,224 KB
testcase_21 AC 51 ms
27,472 KB
testcase_22 WA -
testcase_23 AC 51 ms
27,480 KB
testcase_24 AC 56 ms
27,224 KB
testcase_25 AC 52 ms
27,224 KB
testcase_26 AC 52 ms
26,968 KB
testcase_27 AC 52 ms
27,096 KB
testcase_28 AC 54 ms
26,968 KB
testcase_29 AC 52 ms
27,480 KB
testcase_30 AC 52 ms
27,224 KB
testcase_31 AC 53 ms
27,096 KB
testcase_32 AC 58 ms
27,224 KB
testcase_33 AC 53 ms
26,712 KB
testcase_34 WA -
testcase_35 AC 51 ms
27,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
l,r=10,10**9
ct=0
while r-l>1:
  mid=(l+r)//2
  print("?",max(0,mid-ct),flush=True)
  ct+=1
  ans=int(input())
  if ans==0:
    print("!",mid,flush=True)
    break

  elif ans==1:
    l=mid
  else:
    r=mid
else:
  print("?",max(0,r-ct),flush=True)
  ct+=1
  ans=int(input())
  if ans==0:
    print("!",r,flush=True)
  else:
    print("!",l,flush=True)
0