結果
問題 | No.2024 Xer |
ユーザー | Carpenters-Cat |
提出日時 | 2022-07-30 00:38:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 447 bytes |
コンパイル時間 | 2,301 ms |
コンパイル使用メモリ | 204,276 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 18:45:05 |
合計ジャッジ時間 | 5,265 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 83 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 33 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 49 ms
5,376 KB |
testcase_21 | AC | 83 ms
5,376 KB |
testcase_22 | AC | 84 ms
5,376 KB |
testcase_23 | AC | 83 ms
5,376 KB |
testcase_24 | AC | 84 ms
5,376 KB |
testcase_25 | AC | 3 ms
5,376 KB |
testcase_26 | AC | 4 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 3 ms
5,376 KB |
testcase_30 | AC | 4 ms
5,376 KB |
testcase_31 | AC | 4 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 3 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 4 ms
5,376 KB |
testcase_37 | AC | 4 ms
5,376 KB |
testcase_38 | AC | 4 ms
5,376 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 4 ms
5,376 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 66 ms
5,376 KB |
testcase_46 | AC | 17 ms
5,376 KB |
testcase_47 | AC | 51 ms
5,376 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main () { int N, X; cin >> N >> X; vector<int> A(N); for (auto& a : A) { cin >> a; } sort(A.begin(), A.end(), [=](int a, int b) {return a - a&X < b - b&X;}); for (int i = 0; i < N - 1; i ++) { if ((A[i] >= (A[i + 1] ^ X)) || ((A[i] ^ X) >= A[i + 1])) { cout << "No" << endl; return 0; } } cout << "Yes" << endl; }