# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
903923 | 2024-01-11T14:41:34 Z | LucaLucaM | Intergalactic ship (IZhO19_xorsum) | C++17 | 2000 ms | 1640 KB |
#include <iostream> #include <vector> #include <algorithm> #include <cassert> #include <cstring> #warning That's the baby, that's not my baby typedef long long ll; const int mod = 1e9 + 7; struct Update { int l, r, x; }; int power(int a, int b) { int p = 1; while (b) { if (b & 1) { p = (ll) p * a % mod; } a = (ll) a * a % mod; b >>= 1; } return p; } int solve(std::vector<int> a) { int n = (int) a.size(); ll ret = 0; for (int i = 0; i < n; i++) { int s = 0; for (int j = i; j < n; j++) { s += a[j]; ret += s * s; } } return ret % mod; } int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(0); int n; std::cin >> n; std::vector<int> a(n); for (auto &x : a) { std::cin >> x; } int q; std::cin >> q; if (q == 0) { std::cout << solve(a); return 0; } std::vector<Update> Q(q); for (auto &[l, r, x] : Q) { std::cin >> l >> r >> x; --l, --r; } ll answer = 0; for (int mask = 0; mask < (1 << q); mask++) { std::vector<int> b = a; for (int i = 0; i < q; i++) { if (mask & (1 << i)) { for (int k = Q[i].l; k <= Q[i].r; k++) { b[k] ^= Q[i].x; } } answer += solve(b); } } std::cout << answer % mod; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 352 KB | Output is correct |
2 | Correct | 0 ms | 360 KB | Output is correct |
3 | Incorrect | 1 ms | 360 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 352 KB | Output is correct |
2 | Correct | 0 ms | 360 KB | Output is correct |
3 | Incorrect | 1 ms | 360 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 426 ms | 1640 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2033 ms | 344 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2049 ms | 348 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2049 ms | 348 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 352 KB | Output is correct |
2 | Correct | 0 ms | 360 KB | Output is correct |
3 | Incorrect | 1 ms | 360 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 352 KB | Output is correct |
2 | Correct | 0 ms | 360 KB | Output is correct |
3 | Incorrect | 1 ms | 360 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 352 KB | Output is correct |
2 | Correct | 0 ms | 360 KB | Output is correct |
3 | Incorrect | 1 ms | 360 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |