結果

問題 No.2085 Directed Complete Graph
ユーザー lif4635lif4635
提出日時 2024-10-22 22:15:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 537 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 94,616 KB
平均クエリ数 3061.59
最終ジャッジ日時 2024-10-22 22:15:20
合計ジャッジ時間 6,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,344 KB
testcase_01 AC 59 ms
69,900 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 57 ms
69,728 KB
testcase_16 AC 56 ms
69,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def II() -> int : return int(input())

n = II()
now = [1]

for i in range(2,n+1):
    print("?",now[-1],i)
    if II():
        now = now + [i]
        continue
    print("?",i,now[0])
    if II():
        now = [i] + now
        continue
    
    #二分探索しましょう
    l = 0
    r = len(now)-1
    while r-l > 1:
        mid = l+r//2
        print("?",mid,i)
        
        if II():
            l = mid
        else:
            r = mid
    
    now = now[:r] + [i] + now[r:]

print("!")
print(n-1)
print(*now)
    
    


0