結果

問題 No.609 Noelちゃんと星々
ユーザー simansiman
提出日時 2020-11-23 19:39:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-07-23 17:39:50
合計ジャッジ時間 5,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
18,304 KB
testcase_01 AC 109 ms
15,360 KB
testcase_02 AC 104 ms
13,952 KB
testcase_03 AC 106 ms
14,848 KB
testcase_04 AC 98 ms
13,312 KB
testcase_05 AC 149 ms
20,480 KB
testcase_06 AC 141 ms
18,816 KB
testcase_07 AC 118 ms
16,128 KB
testcase_08 AC 92 ms
12,672 KB
testcase_09 AC 104 ms
14,208 KB
testcase_10 AC 126 ms
17,152 KB
testcase_11 AC 123 ms
16,640 KB
testcase_12 AC 139 ms
18,048 KB
testcase_13 AC 94 ms
12,928 KB
testcase_14 AC 90 ms
12,288 KB
testcase_15 AC 140 ms
18,816 KB
testcase_16 AC 149 ms
20,736 KB
testcase_17 AC 136 ms
18,432 KB
testcase_18 AC 101 ms
13,824 KB
testcase_19 AC 142 ms
18,688 KB
testcase_20 AC 153 ms
20,992 KB
testcase_21 AC 151 ms
20,736 KB
testcase_22 AC 151 ms
20,992 KB
testcase_23 AC 150 ms
20,864 KB
testcase_24 AC 150 ms
20,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
Y = gets.split.map(&:to_i)
X = Y.sort[N / 2]

puts Y.map { |y| (y - X).abs }.sum
0