結果

問題 No.358 も~っと!門松列
ユーザー papinianuspapinianus
提出日時 2016-07-28 12:36:24
言語 PHP
(8.3.4)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 619 bytes
コンパイル時間 1,048 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 31,512 KB
最終ジャッジ日時 2024-11-06 18:08:19
合計ジャッジ時間 2,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,900 KB
testcase_01 AC 42 ms
30,888 KB
testcase_02 AC 42 ms
31,200 KB
testcase_03 AC 42 ms
30,984 KB
testcase_04 AC 44 ms
31,320 KB
testcase_05 AC 42 ms
30,984 KB
testcase_06 AC 41 ms
30,936 KB
testcase_07 AC 42 ms
30,988 KB
testcase_08 AC 41 ms
31,172 KB
testcase_09 AC 47 ms
31,236 KB
testcase_10 AC 42 ms
31,060 KB
testcase_11 AC 42 ms
30,992 KB
testcase_12 AC 43 ms
30,924 KB
testcase_13 AC 43 ms
31,092 KB
testcase_14 AC 45 ms
30,912 KB
testcase_15 AC 43 ms
30,916 KB
testcase_16 AC 42 ms
31,120 KB
testcase_17 AC 42 ms
31,056 KB
testcase_18 AC 43 ms
31,104 KB
testcase_19 AC 43 ms
30,972 KB
testcase_20 AC 44 ms
31,268 KB
testcase_21 AC 43 ms
31,100 KB
testcase_22 AC 43 ms
31,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$bamboos = explode(" ", trim(fgets(STDIN)));
if(iskadomatsu($bamboos)) {
    echo "INF";
} else {
    $ans = 0;
    if(count(array_unique($bamboos)) == 3) {
        $max = max($bamboos);
        for($i = 2; $i <= $max; $i++) {
            if(isKadomatsu([$bamboos[0]%$i, $bamboos[1]%$i, $bamboos[2]%$i])) {
                $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