結果

問題 No.1187 皇帝ペンギン
ユーザー qumazakiqumazaki
提出日時 2020-09-12 02:39:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 419 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 70,760 KB
平均クエリ数 25.00
最終ジャッジ日時 2024-07-17 06:58:08
合計ジャッジ時間 6,283 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,596 KB
testcase_01 AC 64 ms
69,208 KB
testcase_02 AC 59 ms
69,632 KB
testcase_03 AC 60 ms
69,216 KB
testcase_04 AC 60 ms
70,384 KB
testcase_05 AC 60 ms
69,896 KB
testcase_06 AC 61 ms
69,896 KB
testcase_07 AC 60 ms
68,828 KB
testcase_08 AC 60 ms
68,916 KB
testcase_09 AC 60 ms
69,840 KB
testcase_10 AC 60 ms
68,224 KB
testcase_11 AC 60 ms
68,412 KB
testcase_12 AC 61 ms
70,760 KB
testcase_13 AC 60 ms
68,860 KB
testcase_14 AC 60 ms
69,412 KB
testcase_15 AC 60 ms
69,444 KB
testcase_16 AC 59 ms
68,404 KB
testcase_17 AC 60 ms
68,992 KB
testcase_18 AC 59 ms
70,424 KB
testcase_19 AC 60 ms
70,216 KB
testcase_20 AC 59 ms
69,468 KB
testcase_21 AC 60 ms
69,364 KB
testcase_22 AC 63 ms
69,588 KB
testcase_23 AC 61 ms
68,960 KB
testcase_24 AC 60 ms
69,132 KB
testcase_25 AC 61 ms
69,312 KB
testcase_26 AC 59 ms
69,408 KB
testcase_27 AC 59 ms
69,096 KB
testcase_28 AC 59 ms
69,188 KB
testcase_29 AC 60 ms
68,700 KB
testcase_30 AC 59 ms
68,984 KB
testcase_31 AC 63 ms
68,396 KB
testcase_32 AC 60 ms
70,740 KB
testcase_33 AC 60 ms
70,088 KB
testcase_34 AC 59 ms
70,368 KB
testcase_35 AC 59 ms
69,072 KB
testcase_36 AC 59 ms
68,864 KB
testcase_37 AC 60 ms
68,884 KB
testcase_38 AC 60 ms
68,988 KB
testcase_39 AC 60 ms
69,896 KB
testcase_40 AC 60 ms
68,752 KB
testcase_41 AC 60 ms
68,864 KB
testcase_42 AC 60 ms
69,152 KB
testcase_43 AC 59 ms
68,808 KB
testcase_44 AC 59 ms
69,668 KB
testcase_45 AC 60 ms
69,484 KB
testcase_46 AC 61 ms
69,604 KB
testcase_47 AC 60 ms
69,108 KB
testcase_48 AC 60 ms
68,788 KB
testcase_49 AC 60 ms
70,012 KB
testcase_50 AC 60 ms
69,020 KB
testcase_51 AC 60 ms
69,536 KB
testcase_52 AC 60 ms
68,948 KB
testcase_53 AC 60 ms
68,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
iter = 1
ok = 0
ng = 1000
while iter <= 24:
    mid = (ok+ng)//2
    print ("? {}".format(mid))
    sys.stdout.flush()
    iter += 1
    res = input()
    if(res == 'safe'):
        ok = mid
        continue

    print ("? {}".format(mid+1))
    sys.stdout.flush()
    iter += 1
    res = input()
    if(res=='safe'):
        ok = mid+1
    else:
        ng = mid

print("! {}".format(ok))
sys.stdout.flush()
0