結果

問題 No.2085 Directed Complete Graph
ユーザー lif4635lif4635
提出日時 2024-10-22 22:16:40
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 527 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 95,300 KB
平均クエリ数 1567.35
最終ジャッジ日時 2024-10-22 22:16:46
合計ジャッジ時間 5,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
70,088 KB
testcase_01 AC 59 ms
69,000 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 59 ms
69,936 KB
testcase_16 AC 59 ms
69,720 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