結果

問題 No.406 鴨等間隔の法則
ユーザー motimoti
提出日時 2018-05-20 07:24:55
言語 Perl
(5.38.2)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 5,632 KB
実行使用メモリ 28,532 KB
最終ジャッジ日時 2024-07-07 12:25:58
合計ジャッジ時間 2,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
14,956 KB
testcase_01 AC 6 ms
5,760 KB
testcase_02 AC 6 ms
5,760 KB
testcase_03 AC 6 ms
5,760 KB
testcase_04 AC 90 ms
26,428 KB
testcase_05 AC 33 ms
13,312 KB
testcase_06 AC 35 ms
13,820 KB
testcase_07 AC 35 ms
13,784 KB
testcase_08 AC 88 ms
26,148 KB
testcase_09 AC 97 ms
28,276 KB
testcase_10 AC 39 ms
14,936 KB
testcase_11 AC 73 ms
23,336 KB
testcase_12 AC 46 ms
16,956 KB
testcase_13 AC 43 ms
16,232 KB
testcase_14 AC 86 ms
24,412 KB
testcase_15 AC 8 ms
7,040 KB
testcase_16 AC 10 ms
7,168 KB
testcase_17 AC 7 ms
6,400 KB
testcase_18 AC 9 ms
7,552 KB
testcase_19 AC 12 ms
7,552 KB
testcase_20 AC 15 ms
8,448 KB
testcase_21 AC 14 ms
8,448 KB
testcase_22 AC 26 ms
10,708 KB
testcase_23 AC 50 ms
17,884 KB
testcase_24 AC 75 ms
22,116 KB
testcase_25 AC 98 ms
28,524 KB
testcase_26 AC 103 ms
28,412 KB
testcase_27 AC 60 ms
28,416 KB
testcase_28 AC 61 ms
28,532 KB
testcase_29 AC 110 ms
28,416 KB
testcase_30 AC 104 ms
28,188 KB
testcase_31 AC 92 ms
27,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

$_ = <>;
my @v = sort {$a <=> $b} (split / /,<>);
my $count = $v[1] - $v[0];
my $prev = -1;
for my $x (@v) {
  if ($prev != -1 && ($prev == $x || $x - $prev != $count)) {
    print "NO\n";
    exit;
  }
  $prev = $x;
}
print "YES\n";
0