結果

問題 No.253 ロウソクの長さ
ユーザー qibqib
提出日時 2023-02-22 01:25:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 71,040 KB
平均クエリ数 33.92
最終ジャッジ日時 2024-07-22 08:00:57
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,932 KB
testcase_01 AC 62 ms
69,472 KB
testcase_02 AC 64 ms
71,040 KB
testcase_03 AC 60 ms
70,472 KB
testcase_04 AC 61 ms
68,888 KB
testcase_05 AC 59 ms
68,924 KB
testcase_06 AC 56 ms
68,952 KB
testcase_07 AC 55 ms
68,860 KB
testcase_08 AC 57 ms
69,256 KB
testcase_09 AC 57 ms
69,368 KB
testcase_10 AC 61 ms
69,692 KB
testcase_11 AC 61 ms
69,948 KB
testcase_12 AC 63 ms
69,340 KB
testcase_13 AC 56 ms
69,700 KB
testcase_14 AC 57 ms
68,808 KB
testcase_15 AC 61 ms
70,544 KB
testcase_16 AC 57 ms
70,164 KB
testcase_17 AC 56 ms
68,804 KB
testcase_18 AC 59 ms
69,196 KB
testcase_19 AC 56 ms
69,628 KB
testcase_20 AC 58 ms
70,688 KB
testcase_21 AC 60 ms
69,308 KB
testcase_22 AC 60 ms
69,528 KB
testcase_23 AC 60 ms
70,112 KB
testcase_24 AC 61 ms
68,640 KB
testcase_25 AC 58 ms
70,396 KB
testcase_26 AC 60 ms
69,672 KB
testcase_27 AC 58 ms
68,984 KB
testcase_28 AC 59 ms
69,768 KB
testcase_29 AC 58 ms
69,480 KB
testcase_30 AC 60 ms
69,496 KB
testcase_31 AC 60 ms
70,280 KB
testcase_32 AC 57 ms
69,084 KB
testcase_33 AC 61 ms
71,012 KB
testcase_34 AC 60 ms
68,684 KB
testcase_35 AC 57 ms
70,644 KB
権限があれば一括ダウンロードができます

ソースコード

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 + 1
  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
    if mem[-1][1] == 0:
      break

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