This documentation is automatically generated by competitive-verifier/competitive-verifier
// @brief Multiplication of Hex Big Integers
#define PROBLEM "https://judge.yosupo.jp/problem/multiplication_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;
a.mul_inplace(b);
cout << a << "\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++ | example_00 |
|
4 ms | 6 MB |
| g++ | fft_killer_00 |
|
42 ms | 39 MB |
| g++ | fft_killer_01 |
|
41 ms | 39 MB |
| g++ | large_00 |
|
47 ms | 13 MB |
| g++ | large_01 |
|
48 ms | 12 MB |
| g++ | large_02 |
|
47 ms | 12 MB |
| g++ | large_small_00 |
|
42 ms | 28 MB |
| g++ | max_max_00 |
|
42 ms | 39 MB |
| g++ | max_max_01 |
|
43 ms | 39 MB |
| g++ | max_max_02 |
|
43 ms | 39 MB |
| g++ | max_max_03 |
|
43 ms | 39 MB |
| g++ | max_max_04 |
|
43 ms | 39 MB |
| g++ | max_max_05 |
|
43 ms | 39 MB |
| g++ | max_max_06 |
|
43 ms | 39 MB |
| g++ | max_max_07 |
|
42 ms | 39 MB |
| g++ | medium_00 |
|
31 ms | 11 MB |
| g++ | medium_01 |
|
30 ms | 11 MB |
| g++ | medium_02 |
|
30 ms | 11 MB |
| g++ | power_00 |
|
28 ms | 11 MB |
| g++ | power_01 |
|
27 ms | 11 MB |
| g++ | small_00 |
|
47 ms | 11 MB |
| g++ | zero_00 |
|
7 ms | 9 MB |