結果

問題 No.135 とりあえず1次元の問題
ユーザー d_nishiyama85d_nishiyama85
提出日時 2015-05-04 12:13:59
言語 PHP
(8.3.4)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 330 bytes
コンパイル時間 1,715 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 40,692 KB
最終ジャッジ日時 2024-06-11 02:00:12
合計ジャッジ時間 2,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
40,320 KB
testcase_01 AC 40 ms
31,008 KB
testcase_02 AC 43 ms
31,044 KB
testcase_03 AC 40 ms
31,016 KB
testcase_04 AC 40 ms
31,080 KB
testcase_05 AC 40 ms
30,968 KB
testcase_06 AC 41 ms
31,052 KB
testcase_07 AC 40 ms
30,788 KB
testcase_08 AC 41 ms
31,172 KB
testcase_09 AC 40 ms
30,732 KB
testcase_10 AC 40 ms
30,812 KB
testcase_11 AC 40 ms
30,944 KB
testcase_12 AC 40 ms
30,612 KB
testcase_13 AC 40 ms
31,088 KB
testcase_14 AC 42 ms
31,144 KB
testcase_15 AC 41 ms
30,828 KB
testcase_16 AC 41 ms
31,348 KB
testcase_17 AC 40 ms
30,848 KB
testcase_18 AC 40 ms
30,728 KB
testcase_19 AC 40 ms
30,900 KB
testcase_20 AC 42 ms
30,848 KB
testcase_21 AC 162 ms
40,692 KB
testcase_22 AC 157 ms
40,456 KB
evil01.txt AC 155 ms
40,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$N = trim(fgets(STDIN));

$points = explode(' ', trim(fgets(STDIN)));

sort($points);

$min = PHP_INT_MAX;

for($i = 0, $c = count($points); $i < $c - 1; $i++) {
	if (($diff = $points[$i+1] - $points[$i]) > 0) {
		$min = min($min, $diff);
	}
}

if ($min == PHP_INT_MAX || $min == 0) {
	echo "0\n";
} else {
	echo "$min\n";
}
0