結果

問題 No.1131 Deviation Score
ユーザー yocto_sothothyocto_sothoth
提出日時 2020-08-28 06:32:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-06-28 03:50:51
合計ジャッジ時間 4,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
13,312 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 201 ms
20,096 KB
testcase_03 AC 143 ms
14,976 KB
testcase_04 AC 193 ms
18,304 KB
testcase_05 AC 124 ms
14,720 KB
testcase_06 AC 200 ms
19,840 KB
testcase_07 AC 143 ms
15,232 KB
testcase_08 AC 188 ms
18,304 KB
testcase_09 AC 122 ms
14,336 KB
testcase_10 AC 182 ms
18,304 KB
testcase_11 AC 185 ms
18,304 KB
testcase_12 AC 173 ms
17,920 KB
testcase_13 AC 198 ms
20,096 KB
testcase_14 AC 109 ms
13,184 KB
testcase_15 AC 108 ms
13,184 KB
testcase_16 AC 189 ms
18,304 KB
testcase_17 AC 128 ms
14,848 KB
testcase_18 AC 215 ms
20,992 KB
testcase_19 AC 86 ms
12,160 KB
testcase_20 AC 86 ms
12,032 KB
testcase_21 AC 86 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
x = gets.split.map(&:to_i)

mean = x.sum / n.to_f
x.each do |e|
  puts (50 - (mean - e) / 2).to_i
end
0