結果
問題 | No.1863 Xor Sum 2...? |
ユーザー | MtSaka |
提出日時 | 2022-03-03 07:09:39 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 69 ms / 2,000 ms |
コード長 | 636 bytes |
コンパイル時間 | 2,633 ms |
コンパイル使用メモリ | 192,936 KB |
最終ジャッジ日時 | 2025-01-28 04:22:04 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> a(n), b(n); for (int i = 0; i < n; i++) cin >> a[i]; for (int i = 0; i < n; i++) cin >> b[i]; long long ans = 0; for (int i = 0; i < n; i++) { int A = 0, B = 0; for (int j = 0; j < 32; j++) { if (i + j >= n) break; if (A & a[i + j]) break; else { A |= a[i + j]; B ^= b[i + j]; if (B == 0) ans++; } } } cout << ans << endl; }