結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
35,340 KB
testcase_01 AC 38 ms
30,796 KB
testcase_02 AC 39 ms
30,980 KB
testcase_03 WA -
testcase_04 AC 151 ms
40,484 KB
testcase_05 AC 77 ms
35,088 KB
testcase_06 AC 80 ms
35,088 KB
testcase_07 AC 78 ms
35,088 KB
testcase_08 AC 147 ms
40,788 KB
testcase_09 AC 157 ms
41,152 KB
testcase_10 AC 84 ms
35,468 KB
testcase_11 AC 130 ms
40,024 KB
testcase_12 AC 97 ms
35,852 KB
testcase_13 AC 93 ms
35,852 KB
testcase_14 AC 146 ms
40,108 KB
testcase_15 WA -
testcase_16 AC 45 ms
31,116 KB
testcase_17 AC 44 ms
30,860 KB
testcase_18 AC 46 ms
31,240 KB
testcase_19 AC 47 ms
31,632 KB
testcase_20 AC 51 ms
31,760 KB
testcase_21 AC 51 ms
31,756 KB
testcase_22 AC 64 ms
32,912 KB
testcase_23 AC 99 ms
36,240 KB
testcase_24 AC 136 ms
39,900 KB
testcase_25 AC 159 ms
41,236 KB
testcase_26 AC 170 ms
41,196 KB
testcase_27 WA -
testcase_28 AC 159 ms
41,360 KB
testcase_29 AC 173 ms
41,200 KB
testcase_30 AC 170 ms
41,184 KB
testcase_31 AC 151 ms
40,864 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="YES";
}
echo $ans;
0