結果
問題 |
No.116 門松列(1)
|
ユーザー |
|
提出日時 | 2020-06-04 17:35:42 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 325 bytes |
コンパイル時間 | 3,460 ms |
コンパイル使用メモリ | 194,148 KB |
最終ジャッジ日時 | 2025-01-10 21:15:01 |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ cin.tie(0),ios::sync_with_stdio(false); int n; cin>>n; vector<int>a(n); for(auto&&i:a)cin>>i; int ans=0; for(int i=2;i<n;++i){ int&x=a.at(i-2),&y=a.at(i-1),&z=a.at(i); if(x!=y&&y!=z&&z!=x&&(y==min({x,y,z})||y==max({x,y,z}))) ++ans; } cout<<ans<<"\n"s; }