結果
問題 | No.116 門松列(1) |
ユーザー |
![]() |
提出日時 | 2017-01-21 03:37:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 560 bytes |
コンパイル時間 | 640 ms |
コンパイル使用メモリ | 69,700 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 01:25:59 |
合計ジャッジ時間 | 1,422 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <iostream> #include <vector> using namespace std; bool is_kadomatsu(int A, int B, int C) { if (A == B || A == C || B == C) { return 0; } if (A > B && B < C) return 1; if (A < B && B > C) return 1; return 0; } int main() { int N; cin >> N; vector<int> a(N); for (int i = 0; i < N; i++) { cin >> a[i]; } int res = 0; for (int i = 2; i < N; i++) { if (is_kadomatsu(a[i - 2], a[i - 1], a[i])) { res++; } } cout << res << endl; return 0; }