2 条题解

  • 3

    #include<bits/stdc++.h>
    using namespace std;
    typedef long long ll;
    ll n;
    int main()
    {
    cin>>n;
    cout<<2*n-1;
    return 0;
    }

  • 1
    @ 2024-06-30 17:40:09

    两个相差1的数字必然互质
    所以易知a取n, b取n-1是最大值

    #include<iostream>
    using namespace std;
    int main(){
        long long n;
        cin >> n;
        cout << n*2 - 1;
        return 0;
    }
    
  • 1

信息

ID
1209
难度
3
分类
(无)
标签
递交数
54
已通过
28
通过率
52%
上传者