結果

問題 No.135 とりあえず1次元の問題
ユーザー phptarophptaro
提出日時 2015-01-30 15:14:26
言語 PHP
(8.3.4)
結果
AC  
実行時間 221 ms / 5,000 ms
コード長 524 bytes
コンパイル時間 4,975 ms
コンパイル使用メモリ 31,016 KB
実行使用メモリ 41,960 KB
最終ジャッジ日時 2024-06-11 00:38:43
合計ジャッジ時間 3,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
41,720 KB
testcase_01 AC 34 ms
30,852 KB
testcase_02 AC 33 ms
31,128 KB
testcase_03 AC 33 ms
31,144 KB
testcase_04 AC 33 ms
30,916 KB
testcase_05 AC 34 ms
30,788 KB
testcase_06 AC 34 ms
31,100 KB
testcase_07 AC 35 ms
30,944 KB
testcase_08 AC 37 ms
31,224 KB
testcase_09 AC 37 ms
31,184 KB
testcase_10 AC 34 ms
30,948 KB
testcase_11 AC 34 ms
31,032 KB
testcase_12 AC 42 ms
30,852 KB
testcase_13 AC 35 ms
30,852 KB
testcase_14 AC 36 ms
30,760 KB
testcase_15 AC 36 ms
31,000 KB
testcase_16 AC 36 ms
31,216 KB
testcase_17 AC 37 ms
30,960 KB
testcase_18 AC 36 ms
30,936 KB
testcase_19 AC 36 ms
31,132 KB
testcase_20 AC 36 ms
30,920 KB
testcase_21 AC 214 ms
41,960 KB
testcase_22 AC 221 ms
41,852 KB
evil01.txt AC 209 ms
41,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num = trim(fgets(STDIN));
$points = trim(fgets(STDIN));

$arr1 = explode(" ", $points);	//半角スペース区切りの要素を格納
sort($arr1);	//昇順に並び替え
$arr2 = array_unique($arr1, SORT_NUMERIC);	//値の重複を削除
$arr2 = array_merge($arr2);		//重複してとびとびになったインデックスを振り直す

$arr3 = array();
if(count($arr2)  == 1){
	$ans = 0;
}else{
	for($i = 1; $i < count($arr2); $i++){
		$arr3[] = $arr2[$i] - $arr2[($i-1)];

	}
	$ans = min($arr3);

}
	echo $ans;
0