結果

問題 No.1187 皇帝ペンギン
ユーザー ntudantuda
提出日時 2022-03-08 22:31:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 667 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 70,932 KB
平均クエリ数 16.48
最終ジャッジ日時 2024-07-26 11:47:20
合計ジャッジ時間 6,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,936 KB
testcase_01 AC 53 ms
68,588 KB
testcase_02 AC 53 ms
69,152 KB
testcase_03 AC 58 ms
70,332 KB
testcase_04 AC 60 ms
69,188 KB
testcase_05 AC 60 ms
69,424 KB
testcase_06 AC 62 ms
68,984 KB
testcase_07 AC 60 ms
69,672 KB
testcase_08 AC 61 ms
70,216 KB
testcase_09 AC 60 ms
70,932 KB
testcase_10 AC 59 ms
68,996 KB
testcase_11 AC 60 ms
69,480 KB
testcase_12 AC 60 ms
68,872 KB
testcase_13 AC 59 ms
69,028 KB
testcase_14 AC 60 ms
68,732 KB
testcase_15 AC 53 ms
69,744 KB
testcase_16 AC 54 ms
68,744 KB
testcase_17 AC 55 ms
69,284 KB
testcase_18 AC 55 ms
70,336 KB
testcase_19 AC 54 ms
69,920 KB
testcase_20 AC 54 ms
69,812 KB
testcase_21 AC 54 ms
69,924 KB
testcase_22 AC 55 ms
70,132 KB
testcase_23 AC 60 ms
69,948 KB
testcase_24 AC 60 ms
68,664 KB
testcase_25 AC 54 ms
68,780 KB
testcase_26 AC 54 ms
69,004 KB
testcase_27 AC 55 ms
68,800 KB
testcase_28 AC 57 ms
69,656 KB
testcase_29 AC 56 ms
69,384 KB
testcase_30 AC 54 ms
69,284 KB
testcase_31 AC 54 ms
69,332 KB
testcase_32 AC 53 ms
69,128 KB
testcase_33 AC 54 ms
68,900 KB
testcase_34 AC 54 ms
69,484 KB
testcase_35 AC 59 ms
69,120 KB
testcase_36 AC 60 ms
70,020 KB
testcase_37 AC 55 ms
69,432 KB
testcase_38 AC 55 ms
69,308 KB
testcase_39 AC 56 ms
69,956 KB
testcase_40 AC 56 ms
70,412 KB
testcase_41 AC 54 ms
69,780 KB
testcase_42 AC 59 ms
69,364 KB
testcase_43 AC 57 ms
70,044 KB
testcase_44 AC 53 ms
69,104 KB
testcase_45 AC 53 ms
69,616 KB
testcase_46 AC 55 ms
69,616 KB
testcase_47 AC 59 ms
70,084 KB
testcase_48 AC 62 ms
69,012 KB
testcase_49 AC 60 ms
70,000 KB
testcase_50 AC 60 ms
69,356 KB
testcase_51 AC 59 ms
69,444 KB
testcase_52 AC 60 ms
69,332 KB
testcase_53 AC 60 ms
70,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# N = 100
# D = 3

def make_divisors(n):
    divisors = []  #必要に応じてsetにしても良いかも
    i = 1
    while i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
            if i ** 2 != n:
                divisors.append(n//i)
        i += 1
    divisors.sort()
    return divisors

def check(x):
    print("?",x)
    return input() == "safe"
    # return x < N and x % D != 0

def search(lb,d):
    ub = 1000
    while ub - lb > 1:
        mid = (ub + lb) // 2
        if check(mid):
            lb = mid
        elif check(mid+1):
            lb = mid + 1
        else:
            ub = mid
    return lb

print("!",search(0,1000))
0