結果
| 問題 |
No.116 門松列(1)
|
| コンテスト | |
| ユーザー |
pirorirori_n712
|
| 提出日時 | 2018-07-20 02:27:27 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 5,000 ms |
| コード長 | 438 bytes |
| コンパイル時間 | 1,129 ms |
| コンパイル使用メモリ | 106,240 KB |
| 実行使用メモリ | 19,072 KB |
| 最終ジャッジ日時 | 2024-06-25 01:42:43 |
| 合計ジャッジ時間 | 2,710 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
class No116{
static void Main(){
var a=Int32.Parse(Console.ReadLine())-1;
var b=Console.ReadLine().Split(' ').Select(x=>Int32.Parse(x)).ToArray();
var c=0;
for(int i=1;i<a;++i){
if(b[i-1]==b[i+1])continue;
if(b[i]-b[i-1]>0&&b[i]-b[i+1]>0)c++;
else if(b[i]-b[i-1]<0&&b[i]-b[i+1]<0)c++;
}
Console.WriteLine(c);
}
}
pirorirori_n712