結果

問題 No.406 鴨等間隔の法則
ユーザー ayaaya
提出日時 2019-08-01 10:16:25
言語 PHP
(8.3.4)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 42,612 KB
最終ジャッジ日時 2024-07-07 12:42:11
合計ジャッジ時間 4,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
36,408 KB
testcase_01 AC 38 ms
32,272 KB
testcase_02 AC 36 ms
32,400 KB
testcase_03 AC 35 ms
32,400 KB
testcase_04 AC 131 ms
42,428 KB
testcase_05 AC 68 ms
36,540 KB
testcase_06 AC 74 ms
36,152 KB
testcase_07 AC 73 ms
36,152 KB
testcase_08 AC 131 ms
42,552 KB
testcase_09 AC 142 ms
42,448 KB
testcase_10 AC 75 ms
36,284 KB
testcase_11 AC 119 ms
42,300 KB
testcase_12 AC 84 ms
36,280 KB
testcase_13 AC 82 ms
36,408 KB
testcase_14 AC 133 ms
42,300 KB
testcase_15 AC 40 ms
32,528 KB
testcase_16 AC 41 ms
32,272 KB
testcase_17 AC 40 ms
32,404 KB
testcase_18 AC 41 ms
32,404 KB
testcase_19 AC 43 ms
32,344 KB
testcase_20 AC 46 ms
32,216 KB
testcase_21 AC 45 ms
32,404 KB
testcase_22 AC 58 ms
34,364 KB
testcase_23 AC 87 ms
36,664 KB
testcase_24 AC 121 ms
42,424 KB
testcase_25 AC 139 ms
42,608 KB
testcase_26 AC 151 ms
42,612 KB
testcase_27 AC 118 ms
42,608 KB
testcase_28 AC 144 ms
42,484 KB
testcase_29 AC 154 ms
42,480 KB
testcase_30 AC 154 ms
42,428 KB
testcase_31 AC 139 ms
42,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$fuyou=trim(fgets(STDIN));
$duckPoint=explode(" ",trim(fgets(STDIN)));
sort($duckPoint);
$ans=(int)$duckPoint[1]-(int)$duckPoint[0];
for($i=1;$i<=count($duckPoint)-2;$i++){
  $duckLength=(int)$duckPoint[$i+1]-(int)$duckPoint[$i];
  if($ans!=$duckLength||$ans==0){
    $ans="NO";
    break;
  }
}
if(is_int($ans)){
  $ans="YES";
}
echo $ans;
0