Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
48379 | alex_liu | 【AB-1】游戏 | C++ | 通过 | 100 | 0 MS | 244 KB | 427 | 2022-04-12 13:32:06 |
#include<bits/stdc++.h> #define int long long using namespace std; inline int read(){ int x=0; bool f=1; char c=getchar(); while(c>'9'||c<'0'){if(c=='-')f=0;c=getchar();} while(c>='0'&&c<='9'){x=(x<<3)+(x<<1)+c-'0';c=getchar();} return f?x:-x; } int n,a[105]; signed main(){ n=read(); for(int i=1;i<=n;i++)a[i]=read(); if(n&1)cout<<max(a[1],a[n])<<endl; else cout<<min(a[1],a[n])<<endl; return 0; }