結果

問題 No.2753 鳩の巣原理
ユーザー flygon
提出日時 2024-05-10 22:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,752 KB
実行使用メモリ 72,872 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-12-20 07:03:31
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
last = [0,n]
l,r = 1, n+1
cnt = [i for i in range(n)]
for i in range(10):
    m = (l+r)//2
    print("?", m, flush = True)
    t = int(input())
    if t < m:
        l, r = l,m
    else:
        l, r = m,r

print('Yes', l, r, flush = True)
0