結果
問題 | No.1395 Less Sweet Alchemy |
ユーザー |
![]() |
提出日時 | 2021-02-14 21:23:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 388 bytes |
コンパイル時間 | 3,497 ms |
コンパイル使用メモリ | 229,788 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 08:37:33 |
合計ジャッジ時間 | 4,076 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 12 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint1000000007; 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; }