結果

問題 No.850 企業コンテスト2位
ユーザー titiatitia
提出日時 2019-07-12 16:58:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,250 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,848 KB
平均クエリ数 200.11
最終ジャッジ日時 2024-07-16 17:48:01
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
27,736 KB
testcase_01 AC 50 ms
27,480 KB
testcase_02 AC 45 ms
27,088 KB
testcase_03 AC 49 ms
27,608 KB
testcase_04 AC 47 ms
27,352 KB
testcase_05 AC 47 ms
27,472 KB
testcase_06 AC 48 ms
27,608 KB
testcase_07 AC 53 ms
27,608 KB
testcase_08 AC 57 ms
27,096 KB
testcase_09 AC 53 ms
27,608 KB
testcase_10 AC 59 ms
27,608 KB
testcase_11 AC 59 ms
27,256 KB
testcase_12 AC 58 ms
27,352 KB
testcase_13 AC 58 ms
27,736 KB
testcase_14 AC 57 ms
27,352 KB
testcase_15 AC 58 ms
27,848 KB
testcase_16 AC 56 ms
27,480 KB
testcase_17 AC 59 ms
27,096 KB
testcase_18 AC 57 ms
27,096 KB
testcase_19 AC 58 ms
27,352 KB
testcase_20 AC 58 ms
27,480 KB
testcase_21 AC 58 ms
27,352 KB
testcase_22 AC 57 ms
27,096 KB
testcase_23 AC 59 ms
27,608 KB
testcase_24 AC 60 ms
27,224 KB
testcase_25 AC 59 ms
27,352 KB
testcase_26 AC 61 ms
27,480 KB
testcase_27 AC 46 ms
27,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

TOURNAMENT=[list(range(1,N+1))]
WINLIST=[]

while len(TOURNAMENT[-1])!=1:
    LEN=len(TOURNAMENT[-1])
    NEXT=[]

    for i in range(0,LEN,2):

        if i==LEN-1:
            NEXT.append(TOURNAMENT[-1][i])
            break

        x=TOURNAMENT[-1][i]
        y=TOURNAMENT[-1][i+1]

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

        if x==win:
            NEXT.append(x)
            WINLIST.append([x,y])
        else:
            NEXT.append(y)
            WINLIST.append([y,x])
            

    TOURNAMENT.extend([NEXT])

WIN1=TOURNAMENT[-1][-1]

TOURNAMENT2=[]
for x,y in WINLIST:
    if x==WIN1:
        TOURNAMENT2.append(y)
    

TOURNAMENT=[TOURNAMENT2]
     
while len(TOURNAMENT[-1])!=1:
    LEN=len(TOURNAMENT[-1])
    NEXT=[]

    for i in range(0,LEN,2):

        if i==LEN-1:
            NEXT.append(TOURNAMENT[-1][i])
            break

        x=TOURNAMENT[-1][i]
        y=TOURNAMENT[-1][i+1]

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

        if x==win:
            NEXT.append(x)
            WINLIST.append([x,y])
        else:
            NEXT.append(y)
            WINLIST.append([y,x])
            

    TOURNAMENT.extend([NEXT])

print("!",TOURNAMENT[-1][-1],flush=True)
0