Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4362 | 黄言岐 | 13求n个数的最小值 | C++ | Wrong Answer | 0 MS | 264 KB | 230 | 2024-08-16 16:10:44 |
#include<iostream> #include<climits> using namespace std; int main(){ int m=INT_MAX; int t; for(int i=1;i<=7;i++){ cin>>t; if(t>m) m=t; } cout<<m*m<<" "<<m*m*m<<endl; return 0; }
------Input------
18 52 55 68 17 13 20 92 54 42 58 26 84 41 16 14 61 47 91
------Answer-----
13
------Your output-----
1 2147483647