結果

問題 No.406 鴨等間隔の法則
ユーザー nukosukenukosuke
提出日時 2016-10-20 14:16:11
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 788 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 140,768 KB
実行使用メモリ 177,992 KB
最終ジャッジ日時 2024-11-24 13:36:42
合計ジャッジ時間 19,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
149,600 KB
testcase_01 AC 388 ms
141,676 KB
testcase_02 AC 387 ms
141,808 KB
testcase_03 AC 386 ms
141,548 KB
testcase_04 AC 659 ms
162,832 KB
testcase_05 AC 493 ms
148,524 KB
testcase_06 AC 491 ms
148,780 KB
testcase_07 AC 497 ms
148,520 KB
testcase_08 AC 656 ms
162,760 KB
testcase_09 AC 708 ms
167,112 KB
testcase_10 AC 532 ms
149,420 KB
testcase_11 AC 626 ms
159,160 KB
testcase_12 AC 539 ms
151,980 KB
testcase_13 AC 524 ms
150,572 KB
testcase_14 AC 673 ms
162,376 KB
testcase_15 AC 404 ms
144,812 KB
testcase_16 AC 414 ms
144,936 KB
testcase_17 AC 406 ms
144,556 KB
testcase_18 AC 414 ms
145,068 KB
testcase_19 AC 422 ms
145,068 KB
testcase_20 AC 438 ms
145,448 KB
testcase_21 AC 428 ms
145,068 KB
testcase_22 AC 471 ms
146,740 KB
testcase_23 AC 548 ms
152,124 KB
testcase_24 AC 645 ms
159,760 KB
testcase_25 AC 677 ms
165,424 KB
testcase_26 AC 788 ms
175,420 KB
testcase_27 AC 619 ms
165,596 KB
testcase_28 AC 626 ms
165,420 KB
testcase_29 AC 780 ms
176,196 KB
testcase_30 AC 764 ms
177,992 KB
testcase_31 AC 667 ms
163,228 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;

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

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