| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12483 | 罗炜翰 | 土地分割 | C++ | Wrong Answer | 0 | 0 MS | 260 KB | 206 | 2025-07-13 16:46:05 |
#include<bits/stdc++.h> using namespace std; int g(int a, int b) { if(b==0){ return a; } else{ return g(b, a % b); } } int main() { int a,b; cin >>a>>b; cout<<g(a, b); return 0; }