結果
| 問題 |
No.1395 Less Sweet Alchemy
|
| コンテスト | |
| ユーザー |
chestnut_68
|
| 提出日時 | 2021-02-14 21:24:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 309 bytes |
| コンパイル時間 | 1,726 ms |
| コンパイル使用メモリ | 167,268 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-22 08:37:52 |
| 合計ジャッジ時間 | 2,173 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
const int64_t MOD=1e9+7;
int main(){
int N,X,u=0,d=0,f=0;cin>>N>>X;
int A[N];
rep(i,N){
cin>>A[i];
if(A[i]==X)f++;
if(A[i]<X)d++;
if(A[i]>X)u++;
}
if(u&&d)f++;
cout<<(f?"Yes":"No")<<endl;
}
chestnut_68