Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
74302 sh25_shenpy 计算2的N次方 C++ 解答错误 0 MS 264 KB 152 2025-11-25 20:45:41

Tests(2/3):


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


测评信息: