結果

問題 No.116 門松列(1)
ユーザー phsplsphspls
提出日時 2020-03-27 00:54:18
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 114,728 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-06-10 15:48:59
合計ジャッジ時間 2,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
36,468 KB
testcase_01 AC 24 ms
25,380 KB
testcase_02 AC 25 ms
25,132 KB
testcase_03 AC 25 ms
25,252 KB
testcase_04 AC 25 ms
24,996 KB
testcase_05 AC 25 ms
23,096 KB
testcase_06 AC 25 ms
25,260 KB
testcase_07 AC 25 ms
27,156 KB
testcase_08 AC 25 ms
26,508 KB
testcase_09 AC 26 ms
25,092 KB
testcase_10 AC 32 ms
29,876 KB
testcase_11 AC 30 ms
29,860 KB
testcase_12 AC 36 ms
35,336 KB
testcase_13 AC 28 ms
31,356 KB
testcase_14 AC 44 ms
40,320 KB
testcase_15 AC 26 ms
27,644 KB
testcase_16 AC 35 ms
34,808 KB
testcase_17 AC 31 ms
33,956 KB
testcase_18 AC 40 ms
36,504 KB
testcase_19 AC 25 ms
25,204 KB
testcase_20 AC 35 ms
36,092 KB
testcase_21 AC 41 ms
36,432 KB
testcase_22 AC 30 ms
30,112 KB
testcase_23 AC 32 ms
29,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

public class P0116 {
    public static void Main() {
        var n = int.Parse(Console.ReadLine().Trim());
        var a = Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToList();
        var result = 0;
        for(int i=0; i<n-2; i++) {
            var cands = new int[a[i], a[i+1], a[i+2]];
            if (a[i+1] < a[i] && a[i+1] < a[i+2] && a[i] != a[i+2]) {
                result += 1;
            } else if(a[i+1] > a[i] && a[i+1] > a[i+2] && a[i] != a[i+2]) {
                result += 1;
            }
        }
        Console.WriteLine(result);
    }
}
0