結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,216 KB
testcase_01 AC 61 ms
69,708 KB
testcase_02 AC 63 ms
68,824 KB
testcase_03 AC 61 ms
68,748 KB
testcase_04 AC 63 ms
69,704 KB
testcase_05 AC 63 ms
68,796 KB
testcase_06 AC 60 ms
69,356 KB
testcase_07 AC 60 ms
69,516 KB
testcase_08 AC 60 ms
69,540 KB
testcase_09 AC 60 ms
69,768 KB
testcase_10 AC 59 ms
69,228 KB
testcase_11 AC 62 ms
68,920 KB
testcase_12 AC 61 ms
69,100 KB
testcase_13 AC 62 ms
68,808 KB
testcase_14 AC 63 ms
69,168 KB
testcase_15 AC 61 ms
70,328 KB
testcase_16 AC 60 ms
69,620 KB
testcase_17 AC 61 ms
68,828 KB
testcase_18 AC 60 ms
69,560 KB
testcase_19 AC 60 ms
68,764 KB
testcase_20 AC 61 ms
70,492 KB
testcase_21 AC 60 ms
69,884 KB
testcase_22 AC 62 ms
69,732 KB
testcase_23 AC 61 ms
69,304 KB
testcase_24 AC 61 ms
70,644 KB
testcase_25 AC 60 ms
69,568 KB
testcase_26 AC 61 ms
69,104 KB
testcase_27 AC 60 ms
69,580 KB
testcase_28 AC 60 ms
69,072 KB
testcase_29 AC 61 ms
70,284 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