結果
| 問題 |
No.183 たのしい排他的論理和(EASY)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-12 14:41:44 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 5,000 ms |
| コード長 | 519 bytes |
| コンパイル時間 | 942 ms |
| コンパイル使用メモリ | 71,376 KB |
| 最終ジャッジ日時 | 2025-01-09 17:41:58 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
#include <iostream>
#include <vector>
void solve() {
int n;
std::cin >> n;
std::vector<int> xs(n);
for (auto& x : xs) std::cin >> x;
int ans = 0;
for (int i = n - 1; i >= 0; --i) {
if (xs[i] == 0) continue;
++ans;
for (int j = 0; j < i; ++j) {
xs[j] = std::min(xs[j], xs[j] ^ xs[i]);
}
}
std::cout << (1 << ans) << std::endl;
}
int main() {
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
solve();
return 0;
}