結果

問題 No.2977 Kth Xor Pair
ユーザー nouka28nouka28
提出日時 2024-11-19 21:10:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 329 bytes
コンパイル時間 3,388 ms
コンパイル使用メモリ 250,916 KB
実行使用メモリ 815,056 KB
最終ジャッジ日時 2024-11-30 23:30:56
合計ジャッジ時間 49,048 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 52 ms
5,456 KB
testcase_03 AC 51 ms
5,584 KB
testcase_04 AC 52 ms
5,456 KB
testcase_05 AC 51 ms
5,460 KB
testcase_06 AC 51 ms
5,460 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int N;
    long long K;
    cin>>N>>K;
    vector<int> A(N);for(auto&&e:A)cin>>e;

    vector<int> B;
    for(int i=0;i<N;i++){
        for(int j=i+1;j<N;j++){
            B.push_back(A[i]^A[j]);
        }
    }
    sort(B.begin(),B.end());

    cout<<B[K-1]<<endl;
}
0