結果

問題 No.406 鴨等間隔の法則
ユーザー kagikakko_karikagikakko_kari
提出日時 2016-09-12 23:23:37
言語 PHP
(8.3.4)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 42,580 KB
最終ジャッジ日時 2024-07-07 11:47:56
合計ジャッジ時間 6,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
36,536 KB
testcase_01 AC 38 ms
32,276 KB
testcase_02 AC 37 ms
32,400 KB
testcase_03 AC 38 ms
32,144 KB
testcase_04 AC 153 ms
42,428 KB
testcase_05 AC 82 ms
36,404 KB
testcase_06 AC 85 ms
36,536 KB
testcase_07 AC 81 ms
36,408 KB
testcase_08 AC 155 ms
42,428 KB
testcase_09 AC 163 ms
42,580 KB
testcase_10 AC 88 ms
36,412 KB
testcase_11 AC 140 ms
42,296 KB
testcase_12 AC 100 ms
36,152 KB
testcase_13 AC 96 ms
36,156 KB
testcase_14 AC 150 ms
42,168 KB
testcase_15 AC 43 ms
32,524 KB
testcase_16 AC 44 ms
32,272 KB
testcase_17 AC 42 ms
32,268 KB
testcase_18 AC 47 ms
32,276 KB
testcase_19 AC 49 ms
32,272 KB
testcase_20 AC 52 ms
32,276 KB
testcase_21 AC 52 ms
34,488 KB
testcase_22 AC 62 ms
34,364 KB
testcase_23 AC 103 ms
36,408 KB
testcase_24 AC 133 ms
42,300 KB
testcase_25 AC 171 ms
42,432 KB
testcase_26 AC 168 ms
42,480 KB
testcase_27 AC 134 ms
42,556 KB
testcase_28 AC 168 ms
42,484 KB
testcase_29 AC 174 ms
42,428 KB
testcase_30 AC 169 ms
42,428 KB
testcase_31 AC 164 ms
42,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$N = trim(fgets(STDIN));
$x = explode(" ",trim(fgets(STDIN)));
sort($x);

for($i = 0;$i <= $N - 2;$i++){
    $d[$i] = $x[$i + 1] - $x[$i];
}

$d = array_count_values($d);
$count = count($d);
if(isset($d[0]) == false && $count == 1){
    echo "YES" . PHP_EOL ;
}else{
    echo "NO" . PHP_EOL ;
}
?>
0