結果

問題 No.116 門松列(1)
ユーザー ayaaya
提出日時 2019-07-31 15:04:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 4,291 ms
コンパイル使用メモリ 30,812 KB
実行使用メモリ 31,568 KB
最終ジャッジ日時 2024-09-16 22:15:21
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,292 KB
testcase_01 AC 40 ms
31,208 KB
testcase_02 AC 40 ms
31,436 KB
testcase_03 AC 42 ms
31,100 KB
testcase_04 AC 41 ms
31,280 KB
testcase_05 AC 40 ms
31,380 KB
testcase_06 AC 40 ms
31,392 KB
testcase_07 AC 40 ms
31,316 KB
testcase_08 AC 40 ms
31,452 KB
testcase_09 AC 40 ms
31,480 KB
testcase_10 AC 41 ms
31,488 KB
testcase_11 AC 41 ms
31,140 KB
testcase_12 AC 41 ms
31,048 KB
testcase_13 AC 40 ms
31,568 KB
testcase_14 AC 40 ms
31,300 KB
testcase_15 AC 41 ms
31,556 KB
testcase_16 AC 41 ms
31,308 KB
testcase_17 AC 41 ms
31,272 KB
testcase_18 AC 41 ms
31,396 KB
testcase_19 AC 42 ms
30,996 KB
testcase_20 AC 42 ms
31,536 KB
testcase_21 AC 41 ms
31,420 KB
testcase_22 AC 41 ms
31,248 KB
testcase_23 AC 42 ms
31,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num=trim(fgets(STDIN));
$input=explode(" ",(fgets(STDIN)));
$ans=0;
for($i=0;$i<=$num-3;$i++){
  if($input[$i]==$input[$i+1]||$input[$i]==$input[$i+2]||$input[$i+1]==$input[$i+2]){
    continue;
  }
  $min=min($input[$i],$input[$i+1],$input[$i+2]);
  $max=max($input[$i],$input[$i+1],$input[$i+2]);
  if($input[$i+1]==$min||$input[$i+1]==$max){
    $ans++;
  }
}
echo $ans;
0