| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 88653 | sh25_zhangjiajia | 高精度乘法 | C++ | Accepted | 1 MS | 252 KB | 132 | 2026-05-15 15:21:12 |
#include<bits/stdc++.h>; using namespace std; int main() { long long a,b; cin >>a>>b; cout<<a*b; return 0; }