結果
問題 |
No.116 門松列(1)
|
ユーザー |
![]() |
提出日時 | 2017-06-23 21:54:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 624 bytes |
コンパイル時間 | 803 ms |
コンパイル使用メモリ | 93,272 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 01:28:59 |
合計ジャッジ時間 | 1,608 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <algorithm> #include <cstdio> #include <iostream> #include <iomanip> #include <map> #include <cmath> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <vector> #include <stdlib.h> #include <stdio.h> #include <bitset> using namespace std; #define FOR(I,A,B) for(int I = (A); I < (B); ++I) int main(){ int n; cin >> n; int a[n]; FOR(i,0,n){ cin >> a[i]; } int ans = 0; FOR(i,0,n-2){ if(a[i] == a[i+2]) continue; if(a[i] > a[i+1] && a[i+1] < a[i+2]) ans++; if(a[i] < a[i+1] && a[i+1] > a[i+2]) ans++; } cout << ans << endl; return 0; }