結果

問題 No.135 とりあえず1次元の問題
ユーザー ayaaya
提出日時 2019-07-30 15:16:57
言語 PHP
(8.3.4)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 1,030 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 31,888 KB
実行使用メモリ 41,060 KB
最終ジャッジ日時 2024-07-04 18:26:23
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
40,688 KB
testcase_01 AC 37 ms
31,416 KB
testcase_02 AC 38 ms
31,484 KB
testcase_03 AC 39 ms
31,464 KB
testcase_04 AC 40 ms
31,348 KB
testcase_05 AC 38 ms
31,488 KB
testcase_06 AC 39 ms
31,212 KB
testcase_07 AC 40 ms
31,284 KB
testcase_08 AC 38 ms
31,372 KB
testcase_09 AC 38 ms
31,188 KB
testcase_10 AC 39 ms
31,560 KB
testcase_11 AC 39 ms
31,364 KB
testcase_12 AC 37 ms
31,196 KB
testcase_13 AC 39 ms
31,420 KB
testcase_14 AC 40 ms
31,292 KB
testcase_15 AC 40 ms
31,488 KB
testcase_16 AC 39 ms
31,216 KB
testcase_17 AC 40 ms
31,312 KB
testcase_18 AC 39 ms
31,444 KB
testcase_19 AC 39 ms
31,160 KB
testcase_20 AC 39 ms
31,188 KB
testcase_21 AC 136 ms
41,060 KB
testcase_22 AC 164 ms
40,700 KB
evil01.txt AC 161 ms
40,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/*No.135 とりあえず1次元の問題
問題文
数直線上の整数座標上にN個の点がある。

その中から同じ座標ではない2点を選んで、その2点の距離を求める。
距離は、i番目の点の座標をXi、j番目の点の座標をXjとすると 、
絶対値|Xi−Xj|とする。

この時、最小の距離となる2点を選ぶとして、選んだ2点間の最小距離を求めてください。
条件にあう2点を選べなかったら0を出力してください。

入力
N
X1 X2 … XN
入力は全て整数で与えられる。
・1≤N≤100000=105
・0≤Xi≤1000000=106,1≤i≤N
出力
条件にあう2点間の最小距離を求めてください。
2点を選べなかったら0を出力してください。


*/

$n = trim(fgets(STDIN));
$input=explode(" ",trim(fgets(STDIN)));

rsort($input);
$ans=0;

for($i=1;$i<=$n-1;$i++){
  $diff=$input[$i-1]-$input[$i];
  if($ans==0){
    $ans=$diff;
  }elseif($diff<$ans && $diff!=0){
    $ans=$diff;
  }
}
echo $ans;

?>
0