結果
問題 | No.2085 Directed Complete Graph |
ユーザー | lif4635 |
提出日時 | 2024-10-22 22:18:39 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 618 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 95,156 KB |
平均クエリ数 | 1567.18 |
最終ジャッジ日時 | 2024-10-22 22:18:44 |
合計ジャッジ時間 | 4,486 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
69,616 KB |
testcase_01 | AC | 56 ms
70,280 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 | 56 ms
68,880 KB |
testcase_16 | AC | 55 ms
68,480 KB |
ソースコード
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 != -1if f:now = now + [i]continueprint("?",i,now[0])f = II()assert f != -1if f:now = [i] + nowcontinue#二分探索しましょうl = 0r = len(now)-1while r-l > 1:mid = (l+r)//2print("?",mid,i)f = II()assert f != -1if f:l = midelse:r = midnow = now[:r] + [i] + now[r:]print("!")print(n-1)print(*now)