2 条题解

  • 0
    @ 2024-10-02 16:43:44

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

  • 0
    @ 2024-06-28 18:20:03

    第10个点就卡着int型不让过(别问我怎么知道的)

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

信息

ID
2639
难度
4
分类
(无)
标签
递交数
115
已通过
48
通过率
42%
上传者