結果

問題 No.1187 皇帝ペンギン
ユーザー KudeKude
提出日時 2020-08-28 00:37:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 302 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 69,344 KB
平均クエリ数 17.19
最終ジャッジ日時 2024-07-17 06:49:10
合計ジャッジ時間 6,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,344 KB
testcase_01 AC 61 ms
68,424 KB
testcase_02 AC 61 ms
68,680 KB
testcase_03 AC 60 ms
68,296 KB
testcase_04 AC 60 ms
68,424 KB
testcase_05 AC 61 ms
68,040 KB
testcase_06 AC 61 ms
68,424 KB
testcase_07 AC 61 ms
67,912 KB
testcase_08 AC 60 ms
68,168 KB
testcase_09 AC 62 ms
67,912 KB
testcase_10 AC 60 ms
68,424 KB
testcase_11 AC 61 ms
68,952 KB
testcase_12 AC 60 ms
68,424 KB
testcase_13 AC 61 ms
68,552 KB
testcase_14 AC 60 ms
68,592 KB
testcase_15 AC 60 ms
68,176 KB
testcase_16 AC 59 ms
69,192 KB
testcase_17 AC 60 ms
68,296 KB
testcase_18 AC 60 ms
68,296 KB
testcase_19 AC 60 ms
68,296 KB
testcase_20 AC 60 ms
68,040 KB
testcase_21 AC 59 ms
68,552 KB
testcase_22 AC 60 ms
68,296 KB
testcase_23 AC 59 ms
68,552 KB
testcase_24 AC 59 ms
68,424 KB
testcase_25 AC 59 ms
68,552 KB
testcase_26 AC 60 ms
68,296 KB
testcase_27 AC 60 ms
68,424 KB
testcase_28 AC 60 ms
68,656 KB
testcase_29 AC 60 ms
68,720 KB
testcase_30 AC 59 ms
68,168 KB
testcase_31 AC 59 ms
68,424 KB
testcase_32 AC 61 ms
67,920 KB
testcase_33 AC 61 ms
68,560 KB
testcase_34 AC 60 ms
68,176 KB
testcase_35 AC 59 ms
68,432 KB
testcase_36 AC 60 ms
67,792 KB
testcase_37 AC 60 ms
68,176 KB
testcase_38 AC 60 ms
68,304 KB
testcase_39 AC 60 ms
68,624 KB
testcase_40 AC 59 ms
68,304 KB
testcase_41 AC 59 ms
68,440 KB
testcase_42 AC 60 ms
68,312 KB
testcase_43 AC 60 ms
68,824 KB
testcase_44 AC 59 ms
67,928 KB
testcase_45 AC 60 ms
68,696 KB
testcase_46 AC 58 ms
68,312 KB
testcase_47 AC 59 ms
68,680 KB
testcase_48 AC 62 ms
68,296 KB
testcase_49 AC 60 ms
68,936 KB
testcase_50 AC 59 ms
68,936 KB
testcase_51 AC 59 ms
68,552 KB
testcase_52 AC 58 ms
67,920 KB
testcase_53 AC 61 ms
68,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def q(x):
    print('?', x)
    return input() == 'safe'

def ans(x):
    print('!', x)
    return

if not q(1):
    ans(0)
    exit()
l = 1
r = 1000
while r - l > 1:
    c = (r + l) // 2
    if q(c):
        l = c
    else:
        if q(c+1):
            l = c+1
        else:
            r = c
ans(l)
0