結果

問題 No.2085 Directed Complete Graph
ユーザー convexineqconvexineq
提出日時 2024-06-03 07:42:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 93,512 KB
平均クエリ数 2480.65
最終ジャッジ日時 2024-06-03 07:42:08
合計ジャッジ時間 5,593 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
68,312 KB
testcase_01 AC 58 ms
68,824 KB
testcase_02 AC 282 ms
93,512 KB
testcase_03 AC 243 ms
92,616 KB
testcase_04 AC 272 ms
93,000 KB
testcase_05 AC 191 ms
93,024 KB
testcase_06 AC 219 ms
93,152 KB
testcase_07 AC 276 ms
93,024 KB
testcase_08 AC 224 ms
93,024 KB
testcase_09 AC 250 ms
93,408 KB
testcase_10 AC 250 ms
92,872 KB
testcase_11 AC 262 ms
93,160 KB
testcase_12 AC 264 ms
92,616 KB
testcase_13 AC 251 ms
92,488 KB
testcase_14 AC 257 ms
93,000 KB
testcase_15 AC 54 ms
68,320 KB
testcase_16 AC 55 ms
68,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Compare:
    def __init__(self,v):
        self.val = v
    def __lt__(self, other):
        return query(self.val, other.val)

def query(x,y):
    print(f"? {x} {y}", flush=1)
    return int(input())

n = int(input())
*a, = map(Compare,range(1,n+1))
a.sort()

print("!",flush=1)
print(n-1,flush=1)
print(*[x.val for x in a],flush=1)
0