結果
問題 | No.2085 Directed Complete Graph |
ユーザー |
![]() |
提出日時 | 2022-09-27 00:52:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 449 bytes |
コンパイル時間 | 4,353 ms |
コンパイル使用メモリ | 265,776 KB |
実行使用メモリ | 25,452 KB |
平均クエリ数 | 6873.18 |
最終ジャッジ日時 | 2024-06-02 00:36:46 |
合計ジャッジ時間 | 8,625 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <bits/extc++.h> int main() { using namespace std; unsigned long N; cin >> N; vector<unsigned long> A(N); iota(begin(A), end(A), 1); sort(begin(A), end(A), [](auto i, auto j){ cout << "? " << i << " " << j << endl; unsigned long x; cin >> x; return x; }); cout << "!" << endl; cout << N << endl; for(const auto a : A)cout << a << " "; cout << endl; return 0; }