| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 73821 | sh25_shenpy | 分田地 | C++ | Compile Error | 0 MS | 0 KB | 148 | 2025-11-16 20:18:56 |
#include <bits/stdc++.h> using namespace std; int main( ) { int a,b,w; cin>>a>>b; w=__gcd(a,b) cout<<a*b/w; return 0; }