結果

問題 No.1187 皇帝ペンギン
ユーザー 👑 KazunKazun
提出日時 2020-08-22 15:19:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 386 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 70,500 KB
平均クエリ数 16.48
最終ジャッジ日時 2024-07-17 06:24:44
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,516 KB
testcase_01 AC 58 ms
69,652 KB
testcase_02 AC 58 ms
69,944 KB
testcase_03 AC 59 ms
68,976 KB
testcase_04 AC 59 ms
69,776 KB
testcase_05 AC 59 ms
68,968 KB
testcase_06 AC 58 ms
69,304 KB
testcase_07 AC 58 ms
69,992 KB
testcase_08 AC 59 ms
69,684 KB
testcase_09 AC 58 ms
69,400 KB
testcase_10 AC 57 ms
69,656 KB
testcase_11 AC 58 ms
69,608 KB
testcase_12 AC 57 ms
69,748 KB
testcase_13 AC 58 ms
68,848 KB
testcase_14 AC 59 ms
68,268 KB
testcase_15 AC 60 ms
69,252 KB
testcase_16 AC 60 ms
68,656 KB
testcase_17 AC 58 ms
69,936 KB
testcase_18 AC 58 ms
68,736 KB
testcase_19 AC 59 ms
69,768 KB
testcase_20 AC 60 ms
69,144 KB
testcase_21 AC 59 ms
69,720 KB
testcase_22 AC 59 ms
69,832 KB
testcase_23 AC 59 ms
69,988 KB
testcase_24 AC 58 ms
68,564 KB
testcase_25 AC 59 ms
69,260 KB
testcase_26 AC 59 ms
69,868 KB
testcase_27 AC 57 ms
69,140 KB
testcase_28 AC 59 ms
70,208 KB
testcase_29 AC 58 ms
69,044 KB
testcase_30 AC 60 ms
69,056 KB
testcase_31 AC 59 ms
69,692 KB
testcase_32 AC 59 ms
69,532 KB
testcase_33 AC 59 ms
69,080 KB
testcase_34 AC 58 ms
69,372 KB
testcase_35 AC 58 ms
69,200 KB
testcase_36 AC 59 ms
69,404 KB
testcase_37 AC 59 ms
69,876 KB
testcase_38 AC 59 ms
69,460 KB
testcase_39 AC 59 ms
70,008 KB
testcase_40 AC 60 ms
68,656 KB
testcase_41 AC 59 ms
70,004 KB
testcase_42 AC 59 ms
70,484 KB
testcase_43 AC 59 ms
70,208 KB
testcase_44 AC 60 ms
68,908 KB
testcase_45 AC 58 ms
68,900 KB
testcase_46 AC 57 ms
69,672 KB
testcase_47 AC 58 ms
69,660 KB
testcase_48 AC 58 ms
69,212 KB
testcase_49 AC 61 ms
69,156 KB
testcase_50 AC 59 ms
68,996 KB
testcase_51 AC 59 ms
68,948 KB
testcase_52 AC 59 ms
70,500 KB
testcase_53 AC 60 ms
69,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Question(X):
    print("? {}".format(X),flush=True)
    return input()=="safe"

def Answer(X):
    print("! {}".format(X),flush=True)
    exit()
#==============================================
L,R=0,1001

while R-L>1:
    C=L+(R-L)//2
    p=Question(C)
    if not p:
        q=Question(C+1)
        if q:
            L=C
        else:
            R=C
    else:
        L=C
Answer(L)
0