結果

問題 No.135 とりあえず1次元の問題
ユーザー togaerrortogaerror
提出日時 2015-03-25 19:07:38
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-06-11 01:56:02
合計ジャッジ時間 1,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 6 ms
6,016 KB
testcase_02 AC 6 ms
5,888 KB
testcase_03 AC 6 ms
6,144 KB
testcase_04 AC 6 ms
5,888 KB
testcase_05 AC 6 ms
5,888 KB
testcase_06 AC 6 ms
5,888 KB
testcase_07 AC 6 ms
5,888 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 6 ms
5,888 KB
testcase_12 AC 6 ms
5,888 KB
testcase_13 WA -
testcase_14 AC 7 ms
5,888 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 6 ms
6,016 KB
testcase_21 WA -
testcase_22 AC 97 ms
19,072 KB
evil01.txt AC 65 ms
18,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

use strict;
use warnings;

my $n = <>;
my $str = <>;
chomp $str;
my @array = split / /, $str;
my $ans = $array[1] - $array[0];
@array = sort {$a <=> $b} @array;
if($n < 3) {
	print "0\n";
} else {
	for(my $i = 0; $i < $n - 1; $i++) {
		my $com = $array[$i + 1] - $array[$i];
		if(($com < $ans)and($com > 0)) {
			$ans = $com;
		}
	}
	print "$ans\n";
}

exit;
0