結果

問題 No.406 鴨等間隔の法則
ユーザー papinianuspapinianus
提出日時 2016-08-23 09:32:02
言語 PHP
(8.3.4)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 2,796 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 42,876 KB
最終ジャッジ日時 2024-07-07 11:39:08
合計ジャッジ時間 5,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
36,108 KB
testcase_01 AC 38 ms
31,036 KB
testcase_02 AC 37 ms
31,176 KB
testcase_03 AC 36 ms
31,060 KB
testcase_04 AC 43 ms
42,324 KB
testcase_05 AC 39 ms
35,344 KB
testcase_06 AC 39 ms
35,344 KB
testcase_07 AC 40 ms
35,468 KB
testcase_08 AC 45 ms
42,184 KB
testcase_09 AC 47 ms
42,292 KB
testcase_10 AC 40 ms
35,856 KB
testcase_11 AC 46 ms
41,484 KB
testcase_12 AC 41 ms
36,432 KB
testcase_13 AC 40 ms
36,368 KB
testcase_14 AC 145 ms
41,740 KB
testcase_15 AC 37 ms
31,116 KB
testcase_16 AC 41 ms
31,376 KB
testcase_17 AC 40 ms
30,928 KB
testcase_18 AC 41 ms
31,372 KB
testcase_19 AC 46 ms
31,828 KB
testcase_20 AC 48 ms
32,016 KB
testcase_21 AC 47 ms
32,268 KB
testcase_22 AC 61 ms
33,168 KB
testcase_23 AC 40 ms
37,000 KB
testcase_24 AC 128 ms
41,232 KB
testcase_25 AC 45 ms
42,352 KB
testcase_26 AC 169 ms
42,448 KB
testcase_27 AC 42 ms
37,860 KB
testcase_28 AC 45 ms
42,488 KB
testcase_29 AC 174 ms
42,448 KB
testcase_30 AC 170 ms
42,336 KB
testcase_31 AC 46 ms
42,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$birds = explode(" ", trim(fgets(STDIN)));
$flag = false;
$diff = 0;
if(count(array_unique($birds)) == $n) {
    $flag = true;
    rsort($birds);
    $prev = array_shift($birds);
    foreach($birds as $bird) {
        if(($diff == 0 ) || ($prev - $bird) == $diff) {
            $diff = $prev - $bird;
            $prev = $bird;
        } else {
            $flag = false;
            break;
        }
    }
}
echo ($flag)?"YES":"NO";
echo PHP_EOL;
0