結果

問題 No.2977 Kth Xor Pair
ユーザー 大友崚世大友崚世
提出日時 2024-12-01 07:30:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 330 bytes
コンパイル時間 2,384 ms
コンパイル使用メモリ 206,076 KB
実行使用メモリ 817,416 KB
最終ジャッジ日時 2024-12-01 07:31:52
合計ジャッジ時間 41,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 48 ms
5,580 KB
testcase_03 AC 47 ms
5,456 KB
testcase_04 AC 47 ms
5,456 KB
testcase_05 AC 47 ms
5,584 KB
testcase_06 AC 47 ms
5,584 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, k;
	cin >> n >> k;
	vector<int> a(n),XOR;
	for (int i = 0; i < n; i++) cin >> a.at(i);
	for (int i = 0; i < n; i++) {
		for (int j = i + 1; j < n; j++) {
			XOR.push_back(a.at(i) xor a.at(j));
		}
	}
	sort(XOR.begin(), XOR.end());
	cout << XOR.at(k - 1) << endl;
}
0