結果

問題 No.406 鴨等間隔の法則
ユーザー nukosukenukosuke
提出日時 2016-10-20 13:40:33
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 884 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 143,992 KB
実行使用メモリ 175,460 KB
最終ジャッジ日時 2024-05-03 13:22:19
合計ジャッジ時間 22,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
149,316 KB
testcase_01 AC 361 ms
137,532 KB
testcase_02 AC 375 ms
137,148 KB
testcase_03 AC 380 ms
137,168 KB
testcase_04 AC 757 ms
173,084 KB
testcase_05 AC 500 ms
146,736 KB
testcase_06 AC 665 ms
146,508 KB
testcase_07 AC 523 ms
146,536 KB
testcase_08 AC 803 ms
173,196 KB
testcase_09 AC 831 ms
173,704 KB
testcase_10 AC 574 ms
149,308 KB
testcase_11 AC 661 ms
159,672 KB
testcase_12 AC 569 ms
152,012 KB
testcase_13 AC 572 ms
150,956 KB
testcase_14 AC 765 ms
172,072 KB
testcase_15 AC 431 ms
141,756 KB
testcase_16 AC 422 ms
140,992 KB
testcase_17 AC 415 ms
140,864 KB
testcase_18 AC 410 ms
141,632 KB
testcase_19 AC 440 ms
142,016 KB
testcase_20 AC 458 ms
143,192 KB
testcase_21 AC 449 ms
142,908 KB
testcase_22 AC 488 ms
145,344 KB
testcase_23 AC 582 ms
153,436 KB
testcase_24 AC 678 ms
156,340 KB
testcase_25 AC 820 ms
175,460 KB
testcase_26 AC 865 ms
174,844 KB
testcase_27 AC 726 ms
174,480 KB
testcase_28 AC 716 ms
175,336 KB
testcase_29 AC 861 ms
175,360 KB
testcase_30 AC 884 ms
172,924 KB
testcase_31 AC 784 ms
174,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

get();
my @x = get().split(' ').map({.Int}).sort({ $^a <=> $^b });

for 1..@x.end {
  @x[$_-1] = @x[$_] - @x[$_-1];
}

my $ans;
for 0..@x.end-2 {
  if @x[$_] != @x[$_+1] || @x[$_] == 0 {
    $ans = 'NO';
    last;
  }
  $ans = 'YES';
}

say $ans;
0