結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
68,536 KB
testcase_01 AC 56 ms
69,672 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,352 KB
testcase_16 AC 57 ms
68,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def II() -> int : return int(input())
def MI() -> int : return map(int, input().split())
def TI() -> tuple[int] : return tuple(MI())
def LI() -> list[int] : return list(MI())

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():
            r = mid
        else:
            l = mid
    
    now = now[:l] + [i] + now[l:]

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


0