結果

問題 No.21 平均の差
ユーザー nukosukenukosuke
提出日時 2016-10-19 17:25:46
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 406 ms / 5,000 ms
コード長 150 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 145,868 KB
実行使用メモリ 147,672 KB
最終ジャッジ日時 2024-05-03 13:20:38
合計ジャッジ時間 5,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
146,648 KB
testcase_01 AC 396 ms
147,548 KB
testcase_02 AC 400 ms
147,288 KB
testcase_03 AC 401 ms
147,284 KB
testcase_04 AC 396 ms
147,284 KB
testcase_05 AC 398 ms
147,288 KB
testcase_06 AC 398 ms
147,292 KB
testcase_07 AC 403 ms
147,288 KB
testcase_08 AC 405 ms
147,672 KB
testcase_09 AC 406 ms
147,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;
my $N = get().Int;
my $K = get().Int;
my @n = ();

for 1..$N { @n.push(get().Int); }
@n = @n.sort({ $^a <=> $^b });

say @n.max() - @n.min();
0