Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
121143 | 蔡悠然 | 幽灵粒子 | C++ | 通过 | 100 | 0 MS | 252 KB | 300 | 2024-01-21 15:29:48 |
#include<bits/stdc++.h> using namespace std; int main() { int n,x,Max=0,Min=0; scanf("%d%d",&n,&x); for(int i=1,temp;i<=n;i++){ scanf("%d",&temp); Max=max(Max,max(x-temp+1,temp)); Min=max(Min,min(x-temp+1,temp)); } cout<<Min<<" "<<Max; //printf("%d%d",Min,Max); return 0; }