Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151543 胡誉骞 13求7个数的最大值 C++ Wrong Answer 1 MS 268 KB 231 2026-04-13 17:20:58

Tests(0/10):


Code:

#include <iostream> using namespace std; int main(){ int a; cin>>a; int max=-10000; for(int x=1;x<=a;x++){ max=x*x; } cout<<max<<endl; for(int x=1;x<=a;x++){ max=x*x*x; } cout<<max; }


Run Info:

------Input------
64 70 75 65 23 100 7
------Answer-----
10000 1000000
------Your output-----
4096 262144