Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103743 | 张黄源 | 公约数问题 | C++ | Wrong Answer | 110 MS | 268 KB | 251 | 2024-12-29 15:05:46 |
#include<bits/stdc++.h> using namespace std; int jc(int bcs,int cs){ int max; for(int i=1;i<<cs;i++){ if(bcs%i==0&&cs%i==0){ max=i; } } return max; } int main() { int a,b; cin>>a>>b; int s=jc(a,b); cout<<s; return 0; }
------Input------
4140 3864
------Answer-----
276
------Your output-----
138