結果

問題 No.1187 皇帝ペンギン
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-09 02:12:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 1,000 ms
コード長 375 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 70,648 KB
平均クエリ数 18.44
最終ジャッジ日時 2024-07-17 10:28:51
合計ジャッジ時間 6,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
69,580 KB
testcase_01 AC 61 ms
69,184 KB
testcase_02 AC 62 ms
69,404 KB
testcase_03 AC 61 ms
69,220 KB
testcase_04 AC 62 ms
68,828 KB
testcase_05 AC 62 ms
68,904 KB
testcase_06 AC 63 ms
68,780 KB
testcase_07 AC 62 ms
69,152 KB
testcase_08 AC 63 ms
69,324 KB
testcase_09 AC 62 ms
68,972 KB
testcase_10 AC 62 ms
69,352 KB
testcase_11 AC 62 ms
68,736 KB
testcase_12 AC 61 ms
69,408 KB
testcase_13 AC 63 ms
69,264 KB
testcase_14 AC 61 ms
68,624 KB
testcase_15 AC 61 ms
68,976 KB
testcase_16 AC 62 ms
68,864 KB
testcase_17 AC 62 ms
68,672 KB
testcase_18 AC 62 ms
68,856 KB
testcase_19 AC 61 ms
68,836 KB
testcase_20 AC 62 ms
69,208 KB
testcase_21 AC 61 ms
69,416 KB
testcase_22 AC 61 ms
69,344 KB
testcase_23 AC 62 ms
68,860 KB
testcase_24 AC 62 ms
69,568 KB
testcase_25 AC 61 ms
69,772 KB
testcase_26 AC 61 ms
69,732 KB
testcase_27 AC 61 ms
70,332 KB
testcase_28 AC 61 ms
69,620 KB
testcase_29 AC 61 ms
69,316 KB
testcase_30 AC 61 ms
69,076 KB
testcase_31 AC 62 ms
69,488 KB
testcase_32 AC 61 ms
69,632 KB
testcase_33 AC 61 ms
69,344 KB
testcase_34 AC 61 ms
69,616 KB
testcase_35 AC 63 ms
69,064 KB
testcase_36 AC 60 ms
69,396 KB
testcase_37 AC 61 ms
69,436 KB
testcase_38 AC 60 ms
69,828 KB
testcase_39 AC 63 ms
68,984 KB
testcase_40 AC 62 ms
69,044 KB
testcase_41 AC 62 ms
69,240 KB
testcase_42 AC 61 ms
70,648 KB
testcase_43 AC 61 ms
68,804 KB
testcase_44 AC 59 ms
69,024 KB
testcase_45 AC 61 ms
68,828 KB
testcase_46 AC 61 ms
69,736 KB
testcase_47 AC 61 ms
69,348 KB
testcase_48 AC 62 ms
69,668 KB
testcase_49 AC 61 ms
68,708 KB
testcase_50 AC 61 ms
68,744 KB
testcase_51 AC 62 ms
69,396 KB
testcase_52 AC 61 ms
70,168 KB
testcase_53 AC 61 ms
69,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = 0
r = 1001
while r - l > 1:
    m = (l + r) // 2
    print("? {}".format(m))
    s = input()
    if s == "safe":
        l = m
        continue
    print("? {}".format(m + 1))
    s = input()
    if s == "safe":
        l = m + 1
    else:
        r = m

while r >= 0:
    print("? {}".format(r))
    if input() == "safe":
        break
    r -= 1
print("! {}".format(r))
0