結果

問題 No.406 鴨等間隔の法則
ユーザー mondomondo
提出日時 2019-08-09 18:13:17
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 42,612 KB
最終ジャッジ日時 2024-07-19 07:40:38
合計ジャッジ時間 5,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
38,460 KB
testcase_01 AC 36 ms
32,276 KB
testcase_02 AC 38 ms
32,272 KB
testcase_03 WA -
testcase_04 AC 152 ms
42,560 KB
testcase_05 AC 76 ms
38,328 KB
testcase_06 AC 83 ms
38,332 KB
testcase_07 AC 80 ms
38,332 KB
testcase_08 AC 148 ms
42,432 KB
testcase_09 AC 163 ms
42,556 KB
testcase_10 AC 88 ms
38,584 KB
testcase_11 AC 138 ms
42,556 KB
testcase_12 AC 99 ms
38,584 KB
testcase_13 AC 95 ms
38,456 KB
testcase_14 AC 145 ms
42,428 KB
testcase_15 WA -
testcase_16 AC 44 ms
32,276 KB
testcase_17 AC 42 ms
32,216 KB
testcase_18 AC 45 ms
32,272 KB
testcase_19 AC 47 ms
34,360 KB
testcase_20 AC 52 ms
34,488 KB
testcase_21 AC 52 ms
34,492 KB
testcase_22 AC 64 ms
36,412 KB
testcase_23 AC 105 ms
38,456 KB
testcase_24 AC 129 ms
42,556 KB
testcase_25 AC 169 ms
42,612 KB
testcase_26 AC 161 ms
42,480 KB
testcase_27 WA -
testcase_28 AC 142 ms
42,556 KB
testcase_29 AC 165 ms
42,480 KB
testcase_30 AC 163 ms
42,172 KB
testcase_31 AC 162 ms
42,428 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 ? "YES" : "NO";
0