Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
56017 luchenhao2024 求最大公约数问题 C++ 通过 0 MS 240 KB 148 2024-11-08 19:28:39

Tests(2/2):


#include<bits/stdc++.h> #include<algorithm> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<__gcd(a,b); return 0; }


测评信息: