結果

問題 No.406 鴨等間隔の法則
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-15 18:27:03
言語 PHP
(8.3.4)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 42,740 KB
最終ジャッジ日時 2024-07-07 12:08:58
合計ジャッジ時間 6,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
36,408 KB
testcase_01 AC 41 ms
32,528 KB
testcase_02 AC 38 ms
32,468 KB
testcase_03 AC 39 ms
32,532 KB
testcase_04 AC 158 ms
42,552 KB
testcase_05 AC 79 ms
36,540 KB
testcase_06 AC 82 ms
36,408 KB
testcase_07 AC 82 ms
36,664 KB
testcase_08 AC 152 ms
42,684 KB
testcase_09 AC 170 ms
42,448 KB
testcase_10 AC 89 ms
36,412 KB
testcase_11 AC 140 ms
42,684 KB
testcase_12 AC 100 ms
36,536 KB
testcase_13 AC 97 ms
36,540 KB
testcase_14 AC 155 ms
42,300 KB
testcase_15 AC 45 ms
32,532 KB
testcase_16 AC 46 ms
32,532 KB
testcase_17 AC 42 ms
32,400 KB
testcase_18 AC 45 ms
32,148 KB
testcase_19 AC 47 ms
32,528 KB
testcase_20 AC 50 ms
32,400 KB
testcase_21 AC 50 ms
32,404 KB
testcase_22 AC 62 ms
34,492 KB
testcase_23 AC 101 ms
36,540 KB
testcase_24 AC 129 ms
42,680 KB
testcase_25 AC 167 ms
42,352 KB
testcase_26 AC 167 ms
42,608 KB
testcase_27 AC 121 ms
42,608 KB
testcase_28 AC 170 ms
42,608 KB
testcase_29 AC 164 ms
42,740 KB
testcase_30 AC 163 ms
42,684 KB
testcase_31 AC 160 ms
42,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$N = trim(fgets(STDIN));
$x = explode(" ", trim(fgets(STDIN)));
sort($x);
$d = $x[1] - $x[0];
$ans = "YES";
if($d > 0) {
  for($i = 0; $i < $N - 1; $i++) {
    if(($x[$i + 1] - $x[$i]) != $d) $ans = "NO";
  }
} else {
  $ans = "NO";
}
print($ans);
?>
0