1 条题解

  • 0
    @ 2026-5-17 14:25:52
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int n;
        cin >> n;
        for(int i = 1; i <= n * 2 + 1; i++){
            if(i % 2 == 1) cout << 1;
            else cout << 0;
        }
        return 0;
    }
    • 1

    信息

    ID
    766
    时间
    2000ms
    内存
    1024MiB
    难度
    4
    标签
    递交数
    46
    已通过
    23
    上传者