結果

問題 No.406 鴨等間隔の法則
ユーザー mondomondo
提出日時 2019-08-09 18:16:13
言語 PHP
(8.3.4)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 1,408 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 48,576 KB
最終ジャッジ日時 2024-07-07 12:41:45
合計ジャッジ時間 6,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
38,456 KB
testcase_01 AC 40 ms
32,276 KB
testcase_02 AC 38 ms
32,276 KB
testcase_03 AC 36 ms
32,400 KB
testcase_04 AC 153 ms
42,552 KB
testcase_05 AC 75 ms
38,328 KB
testcase_06 AC 78 ms
38,332 KB
testcase_07 AC 78 ms
38,584 KB
testcase_08 AC 153 ms
42,556 KB
testcase_09 AC 160 ms
42,688 KB
testcase_10 AC 86 ms
38,456 KB
testcase_11 AC 140 ms
42,432 KB
testcase_12 AC 99 ms
38,460 KB
testcase_13 AC 93 ms
38,584 KB
testcase_14 AC 147 ms
46,528 KB
testcase_15 AC 40 ms
32,272 KB
testcase_16 AC 42 ms
32,272 KB
testcase_17 AC 40 ms
32,400 KB
testcase_18 AC 42 ms
32,400 KB
testcase_19 AC 45 ms
34,620 KB
testcase_20 AC 49 ms
34,492 KB
testcase_21 AC 49 ms
34,364 KB
testcase_22 AC 61 ms
36,412 KB
testcase_23 AC 100 ms
38,588 KB
testcase_24 AC 136 ms
46,528 KB
testcase_25 AC 166 ms
42,560 KB
testcase_26 AC 168 ms
48,572 KB
testcase_27 AC 133 ms
42,688 KB
testcase_28 AC 134 ms
42,560 KB
testcase_29 AC 170 ms
48,572 KB
testcase_30 AC 169 ms
48,576 KB
testcase_31 AC 158 ms
42,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$count = trim(fgets(STDIN));
$bird = explode(" ", trim(fgets(STDIN)));
rsort($bird);
$diff = array();
for ($i = 0; $i < $count-1; $i++) {
    $diff[] = $bird[$i] - $bird[$i+1];
}
echo count(array_unique($diff)) == 1 && count(array_unique($bird)) != 1 ? "YES" : "NO";
0