結果

問題 No.253 ロウソクの長さ
ユーザー qibqib
提出日時 2023-02-14 00:06:45
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 533 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,436 KB
平均クエリ数 31.72
最終ジャッジ日時 2024-07-17 03:15:44
合計ジャッジ時間 7,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
69,704 KB
testcase_01 AC 67 ms
69,296 KB
testcase_02 AC 70 ms
69,828 KB
testcase_03 AC 65 ms
69,236 KB
testcase_04 AC 65 ms
69,148 KB
testcase_05 AC 67 ms
69,628 KB
testcase_06 AC 66 ms
69,964 KB
testcase_07 AC 67 ms
69,044 KB
testcase_08 AC 66 ms
69,012 KB
testcase_09 AC 64 ms
68,908 KB
testcase_10 AC 66 ms
68,908 KB
testcase_11 AC 66 ms
70,336 KB
testcase_12 AC 67 ms
68,996 KB
testcase_13 AC 66 ms
68,548 KB
testcase_14 AC 65 ms
68,856 KB
testcase_15 AC 69 ms
69,532 KB
testcase_16 AC 64 ms
69,428 KB
testcase_17 AC 62 ms
69,768 KB
testcase_18 AC 64 ms
69,072 KB
testcase_19 AC 61 ms
68,996 KB
testcase_20 AC 63 ms
68,928 KB
testcase_21 AC 66 ms
69,072 KB
testcase_22 AC 63 ms
69,040 KB
testcase_23 AC 63 ms
68,364 KB
testcase_24 AC 69 ms
69,108 KB
testcase_25 AC 67 ms
69,840 KB
testcase_26 AC 69 ms
69,420 KB
testcase_27 AC 67 ms
69,556 KB
testcase_28 AC 68 ms
68,968 KB
testcase_29 AC 67 ms
69,444 KB
testcase_30 AC 66 ms
69,632 KB
testcase_31 AC 65 ms
69,816 KB
testcase_32 AC 65 ms
69,376 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

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 ** 9
  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