1 条题解

  • 2
    @ 2026-7-25 14:33:42
    #include<bits/stdc++.h>
    #define ll long long
    using namespace std;
    int main() {
    	ios::sync_with_stdio(0);
    	cin.tie(nullptr);
    	ll a,b;
    	cin>>a>>b;
    	cout<<"gcd="<<__gcd(a,b);
    	return 0;
    }
    • 1

    信息

    ID
    167
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    递交数
    6
    已通过
    4
    上传者