結果

問題 No.253 ロウソクの長さ
ユーザー qibqib
提出日時 2023-02-22 00:12:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 534 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 83,740 KB
平均クエリ数 16.94
最終ジャッジ日時 2024-07-22 07:23:16
合計ジャッジ時間 6,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 58 ms
70,180 KB
testcase_02 AC 63 ms
71,096 KB
testcase_03 AC 59 ms
70,236 KB
testcase_04 AC 60 ms
69,344 KB
testcase_05 AC 62 ms
69,792 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 60 ms
69,504 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 59 ms
69,208 KB
testcase_15 AC 64 ms
70,988 KB
testcase_16 AC 59 ms
69,756 KB
testcase_17 AC 57 ms
69,972 KB
testcase_18 RE -
testcase_19 AC 56 ms
68,892 KB
testcase_20 RE -
testcase_21 AC 61 ms
70,596 KB
testcase_22 AC 62 ms
69,352 KB
testcase_23 RE -
testcase_24 AC 62 ms
68,752 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 57 ms
69,800 KB
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

mem = []
print("? 100")
sys.stdout.flush()
res = int(input())
mem.append((100, res))

if res == -1:
  while res != 0:
    print("? 1")
    sys.stdout.flush()
    res = int(input())
    mem.append((1, res))
elif res == 1:
  ng = 0
  ok = 10 ** 10
  while res != 0:
    mid = (ok + ng) // 2
    print(f"? {mid - len(mem)}")
    sys.stdout.flush()
    res = int(input())
    mem.append((mid - len(mem), res))

    if res < 0:
      ok = mid
    else:
      ng = mid

print(f"! {mem[-1][0] + len(mem) - 1}")
sys.stdout.flush()
0