結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
149,716 KB
testcase_01 AC 390 ms
138,196 KB
testcase_02 AC 389 ms
138,328 KB
testcase_03 AC 387 ms
138,068 KB
testcase_04 AC 756 ms
174,248 KB
testcase_05 AC 520 ms
147,060 KB
testcase_06 AC 524 ms
147,552 KB
testcase_07 AC 538 ms
147,584 KB
testcase_08 AC 751 ms
174,124 KB
testcase_09 AC 771 ms
174,972 KB
testcase_10 AC 559 ms
149,564 KB
testcase_11 AC 659 ms
160,444 KB
testcase_12 AC 559 ms
152,532 KB
testcase_13 AC 552 ms
151,892 KB
testcase_14 AC 751 ms
173,668 KB
testcase_15 AC 425 ms
140,864 KB
testcase_16 AC 430 ms
142,200 KB
testcase_17 AC 416 ms
142,140 KB
testcase_18 AC 421 ms
142,328 KB
testcase_19 AC 441 ms
142,076 KB
testcase_20 AC 446 ms
144,312 KB
testcase_21 AC 464 ms
144,376 KB
testcase_22 AC 499 ms
145,784 KB
testcase_23 AC 574 ms
154,604 KB
testcase_24 AC 653 ms
157,292 KB
testcase_25 AC 777 ms
176,480 KB
testcase_26 AC 810 ms
175,508 KB
testcase_27 AC 702 ms
175,856 KB
testcase_28 AC 697 ms
176,216 KB
testcase_29 AC 832 ms
176,016 KB
testcase_30 AC 807 ms
174,696 KB
testcase_31 AC 747 ms
175,640 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