This documentation is automatically generated by competitive-verifier/competitive-verifier
// @brief Addition of Hex Big Integers
#define PROBLEM "https://judge.yosupo.jp/problem/addition_of_hex_big_integers"
#pragma GCC optimize("O3,unroll-loops")
#include <bits/allocator.h>
#pragma GCC target("avx2")
#define CP_ALGO_CHECKPOINT
#include <iostream>
#include "blazingio/blazingio.min.hpp"
#include "cp-algo/math/bigint.hpp"
#include "cp-algo/util/checkpoint.hpp"
#include <bits/stdc++.h>
using namespace std;
using namespace cp_algo::math;
void solve() {
bigint<x16> a, b;
cin >> a >> b;
cout << (a += b) << "\n";
}
signed main() {
//freopen("input.txt", "r", stdin);
ios::sync_with_stdio(0);
cin.tie(0);
int t = 1;
cin >> t;
while(t--) {
solve();
}
cp_algo::checkpoint<1>();
}
Traceback (most recent call last):
File "/home/runner/.local/lib/python3.12/site-packages/competitive_verifier/oj_resolve/resolver.py", line 181, in resolve
bundled_code = language.bundle(path, basedir=basedir)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/runner/.local/lib/python3.12/site-packages/competitive_verifier/oj/verify/languages/cplusplus.py", line 252, in bundle
bundler.update(path)
File "/home/runner/.local/lib/python3.12/site-packages/competitive_verifier/oj/verify/languages/cplusplus_bundle.py", line 327, in update
assert len(lines) == len(uncommented_lines)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError
| Env | Name | Status | Elapsed | Memory |
|---|---|---|---|---|
| g++ | carry_chain_00 |
|
11 ms | 9 MB |
| g++ | carry_chain_01 |
|
13 ms | 9 MB |
| g++ | carry_chain_02 |
|
13 ms | 9 MB |
| g++ | carry_chain_03 |
|
15 ms | 9 MB |
| g++ | example_00 |
|
5 ms | 6 MB |
| g++ | large_00 |
|
17 ms | 11 MB |
| g++ | large_01 |
|
18 ms | 12 MB |
| g++ | large_02 |
|
18 ms | 11 MB |
| g++ | large_small_00 |
|
24 ms | 14 MB |
| g++ | max_max_00 |
|
18 ms | 12 MB |
| g++ | max_max_01 |
|
17 ms | 12 MB |
| g++ | max_max_02 |
|
17 ms | 12 MB |
| g++ | max_max_03 |
|
18 ms | 12 MB |
| g++ | max_max_04 |
|
18 ms | 12 MB |
| g++ | max_max_05 |
|
17 ms | 12 MB |
| g++ | max_max_06 |
|
17 ms | 12 MB |
| g++ | max_max_07 |
|
18 ms | 12 MB |
| g++ | medium_00 |
|
19 ms | 11 MB |
| g++ | medium_01 |
|
19 ms | 11 MB |
| g++ | medium_02 |
|
18 ms | 11 MB |
| g++ | power_00 |
|
17 ms | 11 MB |
| g++ | power_01 |
|
13 ms | 9 MB |
| g++ | small_00 |
|
40 ms | 12 MB |
| g++ | sum_zero_00 |
|
18 ms | 11 MB |