結果

問題 No.1187 皇帝ペンギン
ユーザー roarisroaris
提出日時 2020-08-22 17:20:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 445 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 70,900 KB
平均クエリ数 21.33
最終ジャッジ日時 2024-07-17 06:33:23
合計ジャッジ時間 6,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
69,420 KB
testcase_01 AC 61 ms
68,620 KB
testcase_02 AC 61 ms
68,868 KB
testcase_03 AC 60 ms
69,524 KB
testcase_04 AC 60 ms
69,012 KB
testcase_05 AC 60 ms
69,880 KB
testcase_06 AC 60 ms
68,884 KB
testcase_07 AC 61 ms
69,076 KB
testcase_08 AC 61 ms
69,888 KB
testcase_09 AC 61 ms
68,916 KB
testcase_10 AC 60 ms
69,108 KB
testcase_11 AC 60 ms
69,604 KB
testcase_12 AC 61 ms
69,816 KB
testcase_13 AC 61 ms
69,484 KB
testcase_14 AC 62 ms
70,900 KB
testcase_15 AC 60 ms
69,888 KB
testcase_16 AC 64 ms
69,376 KB
testcase_17 AC 63 ms
70,116 KB
testcase_18 AC 61 ms
70,084 KB
testcase_19 AC 61 ms
69,880 KB
testcase_20 AC 61 ms
69,736 KB
testcase_21 AC 60 ms
68,944 KB
testcase_22 AC 60 ms
68,532 KB
testcase_23 AC 61 ms
69,188 KB
testcase_24 AC 59 ms
68,528 KB
testcase_25 AC 62 ms
68,844 KB
testcase_26 AC 61 ms
69,956 KB
testcase_27 AC 61 ms
69,472 KB
testcase_28 AC 61 ms
70,336 KB
testcase_29 AC 60 ms
69,964 KB
testcase_30 AC 61 ms
68,840 KB
testcase_31 AC 60 ms
69,400 KB
testcase_32 AC 61 ms
70,212 KB
testcase_33 AC 60 ms
69,252 KB
testcase_34 AC 60 ms
69,416 KB
testcase_35 AC 61 ms
68,772 KB
testcase_36 AC 62 ms
69,752 KB
testcase_37 AC 62 ms
69,664 KB
testcase_38 AC 61 ms
69,172 KB
testcase_39 AC 62 ms
69,812 KB
testcase_40 AC 63 ms
68,792 KB
testcase_41 AC 63 ms
68,852 KB
testcase_42 AC 63 ms
69,420 KB
testcase_43 AC 62 ms
68,868 KB
testcase_44 AC 63 ms
69,252 KB
testcase_45 AC 63 ms
69,464 KB
testcase_46 AC 64 ms
69,752 KB
testcase_47 AC 63 ms
68,988 KB
testcase_48 AC 63 ms
68,728 KB
testcase_49 AC 62 ms
69,624 KB
testcase_50 AC 63 ms
68,832 KB
testcase_51 AC 62 ms
69,256 KB
testcase_52 AC 61 ms
69,700 KB
testcase_53 AC 62 ms
68,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#N, D = 40, 5

def return_inp(x):
    if x>=N or x%D==0:
        return 'out'
    else:
        return 'safe'
        
def judge(m):
    #res1 = return_inp(m)
    print('?', m)
    res1 = input()
    #res2 = return_inp(m+1)
    print('?', m+1)
    res2 = input()
    return res1=='out' and res2=='out'
    
l, r = 1, 10**3+100
    
while l<=r:
    m = (l+r)//2
        
    if judge(m):
        r = m-1
    else:
        l = m+1

print('!', l-1)
0