結果

問題 No.2085 Directed Complete Graph
ユーザー 259_Momone259_Momone
提出日時 2022-09-27 01:02:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 453 bytes
コンパイル時間 2,777 ms
コンパイル使用メモリ 262,608 KB
実行使用メモリ 24,456 KB
平均クエリ数 6873.18
最終ジャッジ日時 2023-08-24 03:23:02
合計ジャッジ時間 7,145 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
23,412 KB
testcase_01 AC 25 ms
23,532 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 88 ms
23,856 KB
testcase_06 AC 95 ms
23,448 KB
testcase_07 AC 163 ms
23,436 KB
testcase_08 AC 125 ms
24,204 KB
testcase_09 AC 158 ms
23,868 KB
testcase_10 AC 164 ms
23,436 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 24 ms
23,388 KB
testcase_16 AC 24 ms
23,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 - 1 << endl;
    for(const auto a : A)cout << a << " ";
    cout << endl;
    return 0;
}
0