結果

問題 No.1959 Prefix MinMax
ユーザー kyawakyawa
提出日時 2022-05-27 22:01:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 203,868 KB
実行使用メモリ 25,580 KB
平均クエリ数 26.72
最終ジャッジ日時 2024-09-20 16:30:30
合計ジャッジ時間 4,737 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
24,556 KB
testcase_01 AC 22 ms
25,196 KB
testcase_02 AC 20 ms
25,196 KB
testcase_03 AC 20 ms
24,940 KB
testcase_04 AC 21 ms
24,812 KB
testcase_05 AC 24 ms
24,940 KB
testcase_06 AC 20 ms
24,556 KB
testcase_07 AC 34 ms
25,196 KB
testcase_08 AC 34 ms
25,196 KB
testcase_09 AC 36 ms
25,196 KB
testcase_10 AC 35 ms
24,812 KB
testcase_11 AC 36 ms
24,556 KB
testcase_12 AC 36 ms
25,196 KB
testcase_13 AC 35 ms
24,940 KB
testcase_14 AC 36 ms
25,196 KB
testcase_15 AC 38 ms
24,940 KB
testcase_16 AC 36 ms
25,196 KB
testcase_17 AC 36 ms
25,440 KB
testcase_18 AC 36 ms
25,196 KB
testcase_19 AC 35 ms
24,800 KB
testcase_20 AC 38 ms
24,556 KB
testcase_21 AC 37 ms
25,196 KB
testcase_22 AC 35 ms
25,196 KB
testcase_23 AC 36 ms
25,196 KB
testcase_24 AC 35 ms
24,940 KB
testcase_25 AC 35 ms
24,556 KB
testcase_26 AC 35 ms
25,196 KB
testcase_27 AC 35 ms
25,580 KB
testcase_28 AC 36 ms
25,580 KB
testcase_29 AC 35 ms
24,812 KB
testcase_30 AC 35 ms
25,196 KB
testcase_31 AC 35 ms
24,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int64_t T; cin >> T;
    while(T--){
        int64_t N; cin >> N;
        vector<int64_t> A(N), B(N);
        cout << '?';
        for(int64_t i = 0; i < N-1; i++) cout << " " << (i & 1);
        cout << endl;
        for(auto &a : A) cin >> a;
        cout << '?';
        for(int64_t i = 0; i < N-1; i++) cout << " " << ((i & 1) ^ 1);
        cout << endl;
        for(auto &b : B) cin >> b;
        cout << '!' << " " << A[0];
        for(int64_t i = 1; i < N; i++){
            if(A[i-1] != A[i]){
                cout << " " << A[i];
                continue;
            }
            if(B[i-1] != B[i]){
                cout << " " << B[i];
                continue;
            }
            cout << " " << A[i];
        }
        cout << endl;
    }
}
0