結果
問題 | No.130 XOR Minimax |
ユーザー | spihill |
提出日時 | 2020-01-11 01:36:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 500 bytes |
コンパイル時間 | 4,983 ms |
コンパイル使用メモリ | 167,324 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-23 22:22:08 |
合計ジャッジ時間 | 4,411 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int solve() { int N; cin >> N; if (N == 1) return 0; vector<int> a(N); for(int i = 0; i < N; i++) cin >> a[i]; int res = 0; for (int i = 0; i < 31; i++) { int bit = 1 << i; int val = bit & a[0]; for (int j = 1; j < N; i++) { if (val != (bit & a[i])) { res += bit; break; } } } return res; } int main() { cout << solve() << endl; }