結果

問題 No.406 鴨等間隔の法則
ユーザー nukosukenukosuke
提出日時 2016-10-20 13:52:07
言語 Raku
(rakudo v2024.02)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 138,080 KB
実行使用メモリ 176,084 KB
最終ジャッジ日時 2024-11-24 13:33:09
合計ジャッジ時間 19,785 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 512 ms
147,240 KB
testcase_01 AC 378 ms
137,688 KB
testcase_02 WA -
testcase_03 AC 370 ms
138,456 KB
testcase_04 AC 649 ms
160,624 KB
testcase_05 AC 484 ms
146,660 KB
testcase_06 AC 492 ms
147,140 KB
testcase_07 AC 493 ms
147,168 KB
testcase_08 AC 646 ms
160,360 KB
testcase_09 AC 679 ms
164,388 KB
testcase_10 AC 523 ms
146,900 KB
testcase_11 AC 613 ms
156,772 KB
testcase_12 AC 537 ms
150,084 KB
testcase_13 AC 522 ms
149,356 KB
testcase_14 AC 662 ms
159,964 KB
testcase_15 AC 388 ms
142,080 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 412 ms
142,920 KB
testcase_20 AC 436 ms
142,972 KB
testcase_21 WA -
testcase_22 AC 470 ms
146,644 KB
testcase_23 AC 549 ms
149,620 KB
testcase_24 AC 635 ms
157,468 KB
testcase_25 AC 678 ms
164,684 KB
testcase_26 AC 775 ms
175,188 KB
testcase_27 AC 623 ms
163,916 KB
testcase_28 AC 635 ms
164,504 KB
testcase_29 AC 792 ms
176,084 KB
testcase_30 AC 788 ms
175,504 KB
testcase_31 AC 669 ms
161,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

for 2..@x.end {
  if $diff == 0 {
    $ans = False;
    last;
  }
  $diff = @x[$_] - @x[$_-1];
}

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