結果
| 問題 | No.116 門松列(1) |
| コンテスト | |
| ユーザー |
arrows
|
| 提出日時 | 2017-01-21 03:37:17 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 560 bytes |
| 記録 | |
| コンパイル時間 | 463 ms |
| コンパイル使用メモリ | 81,664 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-11 06:04:39 |
| 合計ジャッジ時間 | 1,317 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
}
arrows