結果

問題 No.1830 Balanced Majority
ユーザー titiatitia
提出日時 2022-02-06 00:47:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,608 KB
平均クエリ数 7.42
最終ジャッジ日時 2024-06-11 13:42:20
合計ジャッジ時間 2,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
26,968 KB
testcase_01 AC 43 ms
27,224 KB
testcase_02 AC 46 ms
27,480 KB
testcase_03 AC 42 ms
27,096 KB
testcase_04 AC 47 ms
27,480 KB
testcase_05 AC 43 ms
27,096 KB
testcase_06 AC 42 ms
27,224 KB
testcase_07 AC 44 ms
27,096 KB
testcase_08 AC 41 ms
26,968 KB
testcase_09 AC 43 ms
27,352 KB
testcase_10 AC 43 ms
27,096 KB
testcase_11 AC 44 ms
27,224 KB
testcase_12 AC 44 ms
26,968 KB
testcase_13 AC 44 ms
27,096 KB
testcase_14 AC 44 ms
27,096 KB
testcase_15 AC 44 ms
27,224 KB
testcase_16 AC 44 ms
27,352 KB
testcase_17 AC 46 ms
27,096 KB
testcase_18 AC 45 ms
27,352 KB
testcase_19 AC 43 ms
27,224 KB
testcase_20 AC 42 ms
27,224 KB
testcase_21 AC 44 ms
27,352 KB
testcase_22 AC 45 ms
27,480 KB
testcase_23 AC 44 ms
27,608 KB
testcase_24 AC 43 ms
27,352 KB
testcase_25 AC 44 ms
26,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

print("?",1,flush=True)
x=int(input())
init=x
print("?",N-1,flush=True)
y=int(input())

if x==1 and y==N//2:
    print("!",2,N-1,flush=True)
    exit()
elif x==0 and y==N//2-1:
    print("!",2,N-1,flush=True)
    exit()

# 1~xの表 - 裏の枚数が0になるものを探す

MIN=2
MAX=N-1

while True:
    mid=(MIN+MAX)//2

    print("?",mid,flush=True)
    x=int(input())
    y=mid-x

    if init==1:
        if x<y:
            MAX=mid
        elif x>y:
            MIN=mid
        else:
            break
    else:
        if x>y:
            MAX=mid
        elif x<y:
            MIN=mid
        else:
            break
        

if mid>=N//2:
    print("!",1,mid,flush=True)
else:
    print("!",mid+1,N,flush=True)
0