結果

問題 No.253 ロウソクの長さ
ユーザー qibqib
提出日時 2023-02-22 00:20:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,644 KB
実行使用メモリ 69,592 KB
平均クエリ数 11.44
最終ジャッジ日時 2024-07-22 07:27:22
合計ジャッジ時間 5,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
68,836 KB
testcase_01 AC 67 ms
68,688 KB
testcase_02 AC 69 ms
69,208 KB
testcase_03 AC 67 ms
68,952 KB
testcase_04 AC 67 ms
68,952 KB
testcase_05 AC 64 ms
68,952 KB
testcase_06 AC 66 ms
68,184 KB
testcase_07 AC 62 ms
68,596 KB
testcase_08 AC 61 ms
69,592 KB
testcase_09 AC 60 ms
68,824 KB
testcase_10 AC 66 ms
68,900 KB
testcase_11 WA -
testcase_12 AC 66 ms
69,464 KB
testcase_13 WA -
testcase_14 AC 65 ms
68,824 KB
testcase_15 AC 70 ms
69,336 KB
testcase_16 AC 67 ms
69,328 KB
testcase_17 AC 66 ms
68,824 KB
testcase_18 WA -
testcase_19 AC 65 ms
68,312 KB
testcase_20 WA -
testcase_21 AC 68 ms
69,080 KB
testcase_22 AC 75 ms
68,824 KB
testcase_23 AC 68 ms
68,952 KB
testcase_24 AC 70 ms
69,208 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 68 ms
68,568 KB
testcase_28 AC 69 ms
68,568 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 66 ms
68,952 KB
testcase_33 WA -
testcase_34 AC 66 ms
68,824 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 100
  ok = 10 ** 9
  while ok - ng > 1:
    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