Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
75040 sh25_zhuwy 计算2的N次方 C++ 解答错误 0 MS 248 KB 158 2025-12-05 15:06:15

Tests(2/3):


#include<bits/stdc++.h> using namespace std; int main() { long long n,k=1; cin>>n; for(int i=1;i<=n;i++) { k=k*2; } cout<<k; return 0; }


测评信息: