結果

問題 No.135 とりあえず1次元の問題
ユーザー GoryudyumaGoryudyuma
提出日時 2015-03-08 02:37:50
言語 PHP
(8.3.4)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 251 bytes
コンパイル時間 2,992 ms
コンパイル使用メモリ 30,300 KB
実行使用メモリ 42,768 KB
最終ジャッジ日時 2024-06-11 01:55:24
合計ジャッジ時間 2,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
42,508 KB
testcase_01 AC 36 ms
30,868 KB
testcase_02 AC 34 ms
31,364 KB
testcase_03 AC 37 ms
31,068 KB
testcase_04 AC 36 ms
31,152 KB
testcase_05 AC 34 ms
31,128 KB
testcase_06 AC 35 ms
31,072 KB
testcase_07 AC 34 ms
31,120 KB
testcase_08 AC 34 ms
31,156 KB
testcase_09 AC 34 ms
30,992 KB
testcase_10 AC 35 ms
30,852 KB
testcase_11 AC 36 ms
31,104 KB
testcase_12 AC 34 ms
31,132 KB
testcase_13 AC 34 ms
30,788 KB
testcase_14 AC 35 ms
31,168 KB
testcase_15 AC 35 ms
31,036 KB
testcase_16 AC 36 ms
30,876 KB
testcase_17 AC 36 ms
31,148 KB
testcase_18 AC 36 ms
31,240 KB
testcase_19 AC 35 ms
30,844 KB
testcase_20 AC 35 ms
31,344 KB
testcase_21 AC 42 ms
37,004 KB
testcase_22 AC 153 ms
42,768 KB
evil01.txt AC 156 ms
42,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$N=trim(fgets(STDIN));
$data= array_unique(explode(' ', trim(fgets(STDIN))));
sort($data);
$ans=PHP_INT_MAX;
for($i=0;$i<sizeof($data)-1;$i++){
    $ans=min($ans,$data[$i+1]-$data[$i]);
}
if($ans===PHP_INT_MAX){
    $ans=0;
}
echo $ans.PHP_EOL;
0