| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 88671 | sh25_zhangjiajia | 高精度乘低精度 | C++ | Accepted | 0 MS | 236 KB | 143 | 2026-05-15 15:24:44 |
#include<iostream> using namespace std; int main(){ int x; long long y; cin>>y; cin>>x; cout<<x*y; return 0; }