This documentation is automatically generated by competitive-verifier/competitive-verifier
// @brief Multiplication of Big Integers
#define PROBLEM "https://judge.yosupo.jp/problem/multiplication_of_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 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 |
|
5 ms | 6 MB |
| g++ | fft_killer_00 |
|
41 ms | 43 MB |
| g++ | fft_killer_01 |
|
40 ms | 43 MB |
| g++ | large_00 |
|
47 ms | 13 MB |
| g++ | large_01 |
|
48 ms | 13 MB |
| g++ | large_02 |
|
47 ms | 12 MB |
| g++ | large_small_00 |
|
39 ms | 31 MB |
| g++ | max_max_00 |
|
40 ms | 43 MB |
| g++ | max_max_01 |
|
41 ms | 43 MB |
| g++ | max_max_02 |
|
40 ms | 43 MB |
| g++ | max_max_03 |
|
40 ms | 43 MB |
| g++ | max_max_04 |
|
40 ms | 43 MB |
| g++ | max_max_05 |
|
40 ms | 43 MB |
| g++ | max_max_06 |
|
40 ms | 43 MB |
| g++ | max_max_07 |
|
40 ms | 43 MB |
| g++ | medium_00 |
|
34 ms | 12 MB |
| g++ | medium_01 |
|
34 ms | 12 MB |
| g++ | medium_02 |
|
33 ms | 12 MB |
| g++ | small_00 |
|
43 ms | 12 MB |
| g++ | zero_00 |
|
9 ms | 10 MB |