結果

問題 No.2753 鳩の巣原理
ユーザー flygonflygon
提出日時 2024-05-10 22:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 72,904 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-05-10 22:55:46
合計ジャッジ時間 4,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
72,076 KB
testcase_01 AC 66 ms
71,780 KB
testcase_02 AC 67 ms
71,820 KB
testcase_03 AC 66 ms
72,128 KB
testcase_04 AC 65 ms
71,872 KB
testcase_05 AC 65 ms
72,628 KB
testcase_06 AC 65 ms
72,628 KB
testcase_07 AC 66 ms
71,388 KB
testcase_08 AC 66 ms
71,316 KB
testcase_09 AC 66 ms
72,848 KB
testcase_10 AC 80 ms
71,892 KB
testcase_11 AC 66 ms
71,876 KB
testcase_12 AC 66 ms
71,456 KB
testcase_13 AC 66 ms
71,452 KB
testcase_14 AC 65 ms
72,448 KB
testcase_15 AC 66 ms
71,952 KB
testcase_16 AC 66 ms
72,884 KB
testcase_17 AC 66 ms
72,340 KB
testcase_18 AC 66 ms
72,052 KB
testcase_19 AC 66 ms
71,404 KB
testcase_20 AC 76 ms
71,564 KB
testcase_21 AC 66 ms
72,136 KB
testcase_22 AC 65 ms
72,880 KB
testcase_23 AC 77 ms
72,764 KB
testcase_24 AC 66 ms
72,904 KB
testcase_25 AC 64 ms
71,828 KB
testcase_26 AC 66 ms
71,380 KB
testcase_27 AC 65 ms
72,652 KB
testcase_28 AC 66 ms
71,868 KB
testcase_29 AC 67 ms
72,048 KB
権限があれば一括ダウンロードができます

ソースコード

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