結果

問題 No.1187 皇帝ペンギン
ユーザー ntudantuda
提出日時 2022-03-08 22:20:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 846 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 69,328 KB
平均クエリ数 13.57
最終ジャッジ日時 2024-07-23 22:07:25
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,808 KB
testcase_01 AC 60 ms
68,680 KB
testcase_02 AC 60 ms
68,808 KB
testcase_03 AC 60 ms
68,808 KB
testcase_04 AC 59 ms
68,808 KB
testcase_05 AC 58 ms
69,320 KB
testcase_06 AC 60 ms
68,936 KB
testcase_07 AC 61 ms
68,204 KB
testcase_08 AC 60 ms
68,552 KB
testcase_09 AC 58 ms
68,424 KB
testcase_10 AC 59 ms
68,808 KB
testcase_11 WA -
testcase_12 AC 58 ms
68,680 KB
testcase_13 AC 66 ms
69,064 KB
testcase_14 AC 59 ms
68,808 KB
testcase_15 AC 60 ms
69,056 KB
testcase_16 AC 60 ms
69,320 KB
testcase_17 AC 60 ms
68,808 KB
testcase_18 AC 61 ms
68,936 KB
testcase_19 AC 61 ms
69,064 KB
testcase_20 AC 61 ms
69,316 KB
testcase_21 AC 59 ms
68,808 KB
testcase_22 AC 62 ms
68,808 KB
testcase_23 AC 61 ms
68,808 KB
testcase_24 AC 59 ms
68,808 KB
testcase_25 AC 60 ms
68,680 KB
testcase_26 AC 59 ms
68,808 KB
testcase_27 AC 60 ms
69,320 KB
testcase_28 AC 61 ms
68,808 KB
testcase_29 AC 61 ms
68,936 KB
testcase_30 AC 61 ms
69,192 KB
testcase_31 AC 61 ms
69,064 KB
testcase_32 AC 61 ms
68,304 KB
testcase_33 AC 60 ms
68,816 KB
testcase_34 AC 62 ms
68,688 KB
testcase_35 AC 63 ms
69,012 KB
testcase_36 AC 59 ms
68,816 KB
testcase_37 AC 58 ms
68,944 KB
testcase_38 AC 60 ms
68,816 KB
testcase_39 AC 61 ms
69,328 KB
testcase_40 AC 60 ms
69,072 KB
testcase_41 AC 62 ms
69,080 KB
testcase_42 AC 59 ms
68,568 KB
testcase_43 AC 61 ms
68,568 KB
testcase_44 AC 60 ms
69,208 KB
testcase_45 AC 60 ms
68,696 KB
testcase_46 AC 61 ms
68,312 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 60 ms
69,072 KB
testcase_53 AC 61 ms
69,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#N = 5
#D = 2

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 mid % d == 0:
            mid += 1
        if check(mid):
            lb = mid
        else:
            ub = mid
    return lb

x = search(0,1000)
if check(x+2):
    DL = make_divisors(x)
    for i in DL:
        if check(i):
            continue
        else:
            break
    y = search(x+2,i)
    print("!",y)
else:
    print("!",x)
0