結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
14,812 KB
testcase_01 AC 7 ms
5,632 KB
testcase_02 AC 7 ms
5,760 KB
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 113 ms
26,304 KB
testcase_05 AC 39 ms
13,188 KB
testcase_06 AC 41 ms
13,696 KB
testcase_07 AC 43 ms
13,912 KB
testcase_08 AC 109 ms
26,052 KB
testcase_09 AC 123 ms
28,404 KB
testcase_10 AC 46 ms
14,812 KB
testcase_11 AC 94 ms
23,212 KB
testcase_12 AC 59 ms
17,084 KB
testcase_13 AC 54 ms
16,364 KB
testcase_14 AC 111 ms
24,532 KB
testcase_15 AC 10 ms
6,784 KB
testcase_16 AC 12 ms
7,168 KB
testcase_17 AC 9 ms
6,272 KB
testcase_18 AC 11 ms
7,424 KB
testcase_19 AC 14 ms
7,552 KB
testcase_20 AC 18 ms
8,448 KB
testcase_21 AC 17 ms
8,448 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 62 ms
17,760 KB
testcase_24 AC 96 ms
22,108 KB
testcase_25 AC 125 ms
28,400 KB
testcase_26 AC 136 ms
28,412 KB
testcase_27 AC 70 ms
28,416 KB
testcase_28 AC 71 ms
28,404 KB
testcase_29 AC 135 ms
28,416 KB
testcase_30 AC 133 ms
28,192 KB
testcase_31 AC 119 ms
27,424 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