結果

問題 No.253 ロウソクの長さ
ユーザー takakintakakin
提出日時 2020-06-23 22:42:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,608 KB
平均クエリ数 21.25
最終ジャッジ日時 2024-07-17 02:46:33
合計ジャッジ時間 4,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
print("?",100,flush=True)
ans=int(input())
if ans==0:
  print("!",100,flush=True)
elif ans==-1:
  l,r=10,100
  ct=1
  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)
else:
  l,r=100,10**9
  ct=1
  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