結果

問題 No.406 鴨等間隔の法則
ユーザー ayaaya
提出日時 2019-08-01 10:15:39
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 30,564 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-07-05 07:25:46
合計ジャッジ時間 5,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
35,728 KB
testcase_01 AC 41 ms
30,728 KB
testcase_02 AC 41 ms
30,536 KB
testcase_03 WA -
testcase_04 AC 150 ms
40,744 KB
testcase_05 AC 77 ms
35,216 KB
testcase_06 AC 83 ms
35,340 KB
testcase_07 AC 78 ms
35,212 KB
testcase_08 AC 147 ms
40,404 KB
testcase_09 AC 159 ms
41,280 KB
testcase_10 AC 84 ms
35,472 KB
testcase_11 AC 135 ms
40,020 KB
testcase_12 AC 98 ms
35,720 KB
testcase_13 AC 94 ms
35,724 KB
testcase_14 AC 151 ms
40,112 KB
testcase_15 WA -
testcase_16 AC 48 ms
31,120 KB
testcase_17 AC 43 ms
31,120 KB
testcase_18 AC 49 ms
31,376 KB
testcase_19 AC 49 ms
31,628 KB
testcase_20 AC 54 ms
31,884 KB
testcase_21 AC 52 ms
31,888 KB
testcase_22 AC 67 ms
33,036 KB
testcase_23 AC 101 ms
36,112 KB
testcase_24 AC 139 ms
39,900 KB
testcase_25 AC 161 ms
41,492 KB
testcase_26 AC 174 ms
41,196 KB
testcase_27 WA -
testcase_28 AC 160 ms
41,492 KB
testcase_29 AC 180 ms
41,452 KB
testcase_30 AC 177 ms
41,312 KB
testcase_31 AC 158 ms
40,992 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="NO";
    break;
  }
}
if(is_int($ans)||$ans==0){
  $ans="YES";
}
echo $ans;
0