結果

問題 No.2753 鳩の巣原理
ユーザー FromBooskaFromBooska
提出日時 2024-05-10 23:50:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 70,160 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-05-10 23:50:34
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
68,600 KB
testcase_01 AC 52 ms
68,612 KB
testcase_02 AC 53 ms
68,088 KB
testcase_03 AC 52 ms
69,356 KB
testcase_04 AC 54 ms
69,556 KB
testcase_05 AC 53 ms
69,172 KB
testcase_06 AC 60 ms
69,568 KB
testcase_07 AC 61 ms
68,888 KB
testcase_08 AC 64 ms
70,160 KB
testcase_09 AC 54 ms
69,680 KB
testcase_10 AC 54 ms
68,812 KB
testcase_11 AC 61 ms
69,268 KB
testcase_12 AC 52 ms
69,524 KB
testcase_13 AC 54 ms
68,768 KB
testcase_14 AC 55 ms
69,532 KB
testcase_15 AC 54 ms
68,984 KB
testcase_16 AC 53 ms
69,740 KB
testcase_17 AC 53 ms
69,912 KB
testcase_18 AC 56 ms
69,640 KB
testcase_19 AC 55 ms
69,104 KB
testcase_20 AC 52 ms
68,944 KB
testcase_21 AC 52 ms
68,816 KB
testcase_22 AC 51 ms
68,904 KB
testcase_23 AC 54 ms
69,096 KB
testcase_24 AC 56 ms
68,684 KB
testcase_25 AC 56 ms
68,420 KB
testcase_26 AC 55 ms
68,888 KB
testcase_27 AC 53 ms
68,744 KB
testcase_28 AC 56 ms
69,248 KB
testcase_29 AC 54 ms
68,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 二分探索だな、2**10>1000, ABC299Dのようにできるか

N = int(input())


low = 0
low_count = -10
high = N+1
high_count = N+10
ans = [0, 0]
ans_flag = False

for i in range(10):
    mid = (low+high)//2
    
    print('?', mid)
    res = int(input())
    if ans_flag == False:
        if res == low_count and mid != low:
            ans_flag = True
            ans = [mid-1, mid]  
        elif res == high_count and mid != high:
            ans_flag = True
            ans = [mid, mid+1]              
    
    if res < mid:
        high = mid
        high_count = res
    else:
        low = mid
        low_count = res

    #print('i', i, 'mid', mid, 'res', res, 'low', low, 'high', high, 'ans', ans, 'ans_flag', ans_flag)
    
if ans == [0, 0]:
    print('No')
else:
    print('Yes', *ans)
0