結果

問題 No.2085 Directed Complete Graph
ユーザー lif4635lif4635
提出日時 2024-10-22 22:20:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 623 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 95,660 KB
平均クエリ数 1568.18
最終ジャッジ日時 2024-10-22 22:20:33
合計ジャッジ時間 5,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
69,552 KB
testcase_01 AC 58 ms
68,600 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 123 ms
86,280 KB
testcase_06 AC 130 ms
86,464 KB
testcase_07 AC 212 ms
92,556 KB
testcase_08 AC 155 ms
91,060 KB
testcase_09 AC 203 ms
92,820 KB
testcase_10 AC 201 ms
92,788 KB
testcase_11 AC 189 ms
92,832 KB
testcase_12 AC 197 ms
92,860 KB
testcase_13 AC 191 ms
92,648 KB
testcase_14 AC 192 ms
92,648 KB
testcase_15 AC 56 ms
69,564 KB
testcase_16 AC 57 ms
69,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n = II()
now = [1]

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

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