結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー fine
提出日時 2016-04-02 23:40:39
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 1,290 ms
コンパイル使用メモリ 159,476 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-07-04 12:10:13
合計ジャッジ時間 26,495 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 4 WA * 11 TLE * 3 -- * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, ans = 0, c;
    unsigned long long tmp;
    cin >> n;
    vector<unsigned long long> a(n);
    for(int i = 0; i < n; i++) {
        cin >> a[i];
    }
    for(int i = 0; i < n; i++) {
        if(a[i]) {
            ans++;
            c = -1;
            while (tmp){
                c++;
                tmp >>= 1LL;
            }
            for(int j = i + 1; j < n; j++) {
                if ((1LL << c) & a[j]) a[j] ^= a[i];
            }
        }
    }
    cout << (1LL << ans) << "\n";
    return 0;
}
0