結果
問題 | No.2085 Directed Complete Graph |
ユーザー | convexineq |
提出日時 | 2024-06-03 07:41:02 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 245 ms / 2,000 ms |
コード長 | 345 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 82,168 KB |
実行使用メモリ | 93,704 KB |
平均クエリ数 | 2494.06 |
最終ジャッジ日時 | 2024-06-03 07:41:09 |
合計ジャッジ時間 | 6,076 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
68,440 KB |
testcase_01 | AC | 50 ms
68,696 KB |
testcase_02 | AC | 220 ms
93,256 KB |
testcase_03 | AC | 224 ms
93,128 KB |
testcase_04 | AC | 227 ms
93,280 KB |
testcase_05 | AC | 149 ms
93,296 KB |
testcase_06 | AC | 180 ms
93,152 KB |
testcase_07 | AC | 217 ms
93,696 KB |
testcase_08 | AC | 181 ms
93,152 KB |
testcase_09 | AC | 215 ms
93,408 KB |
testcase_10 | AC | 226 ms
93,288 KB |
testcase_11 | AC | 245 ms
93,288 KB |
testcase_12 | AC | 224 ms
93,128 KB |
testcase_13 | AC | 223 ms
93,456 KB |
testcase_14 | AC | 218 ms
93,704 KB |
testcase_15 | AC | 50 ms
68,448 KB |
testcase_16 | AC | 47 ms
69,088 KB |
ソースコード
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)[::-1]) a.sort() print("!",flush=1) print(n-1,flush=1) print(*[x.val for x in a],flush=1)