結果
問題 | No.2155 みちらcolor |
ユーザー | kotatsugame |
提出日時 | 2022-12-09 21:25:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 433 bytes |
コンパイル時間 | 794 ms |
コンパイル使用メモリ | 77,052 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 19:25:37 |
合計ジャッジ時間 | 2,627 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 64 |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { int N,M,L; cin>>N>>M>>L; vector<int>A,B; A.push_back(L); for(;N--;) { int a;cin>>a; B.clear(); for(int t:A) { B.push_back(t); B.push_back((t+a)/2); } sort(B.begin(),B.end()); B.erase(unique(B.begin(),B.end()),B.end()); B.swap(A); } for(int a:A)if(a==M) { cout<<"Yes"<<endl; return 0; } cout<<"No"<<endl; }