結果

問題 No.116 門松列(1)
ユーザー papinianuspapinianus
提出日時 2016-07-25 10:19:59
言語 PHP
(8.3.4)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 32,400 KB
実行使用メモリ 31,196 KB
最終ジャッジ日時 2024-06-25 01:18:20
合計ジャッジ時間 2,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
30,832 KB
testcase_01 AC 44 ms
31,196 KB
testcase_02 AC 42 ms
31,048 KB
testcase_03 AC 41 ms
30,948 KB
testcase_04 AC 42 ms
30,748 KB
testcase_05 AC 41 ms
30,640 KB
testcase_06 AC 41 ms
31,100 KB
testcase_07 AC 41 ms
30,700 KB
testcase_08 AC 42 ms
30,988 KB
testcase_09 AC 46 ms
30,860 KB
testcase_10 AC 41 ms
30,928 KB
testcase_11 AC 42 ms
31,036 KB
testcase_12 AC 41 ms
30,668 KB
testcase_13 AC 43 ms
30,572 KB
testcase_14 AC 42 ms
30,904 KB
testcase_15 AC 41 ms
30,932 KB
testcase_16 AC 41 ms
31,112 KB
testcase_17 AC 41 ms
30,996 KB
testcase_18 AC 42 ms
30,828 KB
testcase_19 AC 42 ms
30,748 KB
testcase_20 AC 42 ms
31,064 KB
testcase_21 AC 42 ms
30,932 KB
testcase_22 AC 42 ms
30,692 KB
testcase_23 AC 41 ms
30,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$null = trim(fgets(STDIN));
$bamboos = explode(" ", trim(fgets(STDIN)));
$size = count($bamboos);
$ans = 0;
for($i = 0; $i < $size-2; $i++) {
    if(isKadomatsu(array_slice($bamboos, $i, 3))) {
        $ans++;
    }
}
echo $ans;
echo PHP_EOL;

function isKadomatsu($arr) {
    if(count(array_unique($arr)) == 3) {
        if(array_keys($arr, max($arr))[0] == 1 || array_keys($arr, min($arr))[0] == 1 ) {
            return true;
        }
    }
    return false;
}
0