結果
問題 | No.130 XOR Minimax |
ユーザー | ふう |
提出日時 | 2015-01-26 17:24:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 866 bytes |
コンパイル時間 | 961 ms |
コンパイル使用メモリ | 82,044 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 03:15:36 |
合計ジャッジ時間 | 4,535 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:63:17: warning: ‘res’ may be used uninitialized in this function [-Wmaybe-uninitialized] 63 | cout << res << endl; | ^~~
ソースコード
#define _CRT_SECURE_NO_WARNINGS #define _USE_MATH_DEFINES #include <iostream> #include <map> #include <list> #include <cstdio> #include <cmath> #include <cstring> #include <string> #include <vector> #include <algorithm> #include <utility> #include <queue> #include <iomanip> using namespace std; int nbit(int b, int n) { for (int i = 1; i < n; i++) { b /= 2; } return (b % 2); } int get_bitlen(int b) { return ((int)(log(b) / log(2) + 1)); } int main(void) { int n; int a[10000]; int ma = 0; int res; cin >> n; for (int i = 0; i < n; i++) { cin >> a[i]; ma = max(ma, a[i]); } if(get_bitlen(ma) == 1) { res = 0; goto next; } for (int i = get_bitlen(ma); i >= 1; i--) { for (int j = 0; j < n; j++) { if (nbit(a[j], i) == 0) { res = (int)pow(2, i - 1); goto next; } } } next: cout << res << endl; return (0); }