2 条题解

  • 2
    @ 2025-11-30 10:12:45
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int s=1,n;
        cin>>n;
        for(int i=1;i<=n;i++)
            s*=2;
        cout<<s;
        return 0;
    }
    
    • 0
      @ 2025-12-17 20:43:27

      #include<bits/stdc++.h> using namespace std; int main() { srand(time(NULL)); cout<<rand(); return 0; }

      • 1

      信息

      ID
      6891
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      20
      已通过
      11
      上传者