結果
問題 | No.725 木は明らかに森である |
ユーザー | osyo-manga |
提出日時 | 2023-04-07 18:45:47 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 472 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-10-02 18:44:26 |
合計ジャッジ時間 | 1,426 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.to_i a = gets.chomp.split.map(&:to_i) # aを昇順でソートする a.sort! # 中央値を求める if n % 2 == 0 # 要素数が偶数の場合、中央の2つの要素の平均をとる median = (a[n / 2 - 1] + a[n / 2]) / 2.0 else # 要素数が奇数の場合、中央の要素をそのまま使う median = a[n / 2] end # 中央値から各要素の差の絶対値の合計を求める sum = 0 a.each do |x| sum += (x - median).abs end puts sum