Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108827 | 柯昊阳 | 数列极差问题 | C++ | 解答错误 | 0 | 0 MS | 244 KB | 281 | 2023-11-04 11:10:19 |
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; while(n!=0){ int min = 1e9+7,max = -1e9+7; for(int i = 0;i<n;i++){ int x; cin>>x; if(x>max) max = x; if(x<min) min = x; } cout<<max-min<<endl; cin>>n; } return 0; }