| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80531 | sh25_zhuwy | 高精度乘低精度 | C++ | Accepted | 0 MS | 244 KB | 143 | 2026-01-04 15:20:42 |
#include<iostream> using namespace std; int main(){ int x; long long y; cin>>y; cin>>x; cout<<x*y; return 0; }