結果

問題 No.406 鴨等間隔の法則
ユーザー nukosukenukosuke
提出日時 2016-10-20 14:07:18
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 136,560 KB
実行使用メモリ 175,072 KB
最終ジャッジ日時 2024-11-24 13:34:05
合計ジャッジ時間 23,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 614 ms
146,588 KB
testcase_01 AC 458 ms
137,324 KB
testcase_02 AC 463 ms
137,192 KB
testcase_03 AC 466 ms
137,064 KB
testcase_04 AC 800 ms
159,824 KB
testcase_05 AC 598 ms
146,152 KB
testcase_06 AC 598 ms
146,156 KB
testcase_07 AC 605 ms
146,276 KB
testcase_08 AC 787 ms
159,492 KB
testcase_09 AC 837 ms
164,000 KB
testcase_10 AC 643 ms
146,552 KB
testcase_11 AC 730 ms
156,032 KB
testcase_12 AC 648 ms
149,484 KB
testcase_13 AC 634 ms
146,804 KB
testcase_14 AC 812 ms
159,656 KB
testcase_15 AC 504 ms
141,548 KB
testcase_16 AC 504 ms
141,420 KB
testcase_17 AC 501 ms
141,160 KB
testcase_18 AC 503 ms
141,416 KB
testcase_19 AC 518 ms
141,672 KB
testcase_20 AC 519 ms
142,188 KB
testcase_21 AC 516 ms
142,444 KB
testcase_22 AC 577 ms
145,384 KB
testcase_23 AC 663 ms
149,740 KB
testcase_24 AC 757 ms
156,920 KB
testcase_25 AC 849 ms
162,804 KB
testcase_26 AC 948 ms
173,504 KB
testcase_27 AC 848 ms
174,024 KB
testcase_28 AC 742 ms
162,556 KB
testcase_29 AC 946 ms
174,036 KB
testcase_30 AC 930 ms
175,072 KB
testcase_31 AC 837 ms
160,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

get();
my @x = get().split(' ').map({.Int}).sort({ $^a <=> $^b });
my $diff = @x[1] - @x[0];
my $expect = @x[1];
my $ans  = True;

for 1..@x.end {
  if $expect != @x[$_] {
    $ans = False;
    last;
  }
  $expect += $diff;
}

if $diff == 0 {
  $ans = False;
}

say($ans ?? 'YES' !! 'NO');
0