結果

問題 No.1131 Deviation Score
ユーザー shi-moshi-mo
提出日時 2020-10-01 11:51:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-06-28 03:52:33
合計ジャッジ時間 4,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
13,184 KB
testcase_01 AC 93 ms
12,032 KB
testcase_02 AC 209 ms
19,968 KB
testcase_03 AC 150 ms
14,976 KB
testcase_04 AC 197 ms
17,920 KB
testcase_05 AC 130 ms
14,464 KB
testcase_06 AC 204 ms
19,840 KB
testcase_07 AC 142 ms
14,848 KB
testcase_08 AC 190 ms
18,176 KB
testcase_09 AC 123 ms
14,336 KB
testcase_10 AC 194 ms
18,048 KB
testcase_11 AC 200 ms
18,048 KB
testcase_12 AC 185 ms
18,048 KB
testcase_13 AC 210 ms
19,968 KB
testcase_14 AC 112 ms
13,184 KB
testcase_15 AC 112 ms
13,056 KB
testcase_16 AC 197 ms
18,176 KB
testcase_17 AC 131 ms
14,592 KB
testcase_18 AC 223 ms
20,992 KB
testcase_19 AC 87 ms
12,032 KB
testcase_20 AC 87 ms
12,160 KB
testcase_21 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
x = gets.split.map(&:to_i)
a = x.inject(:+).to_f / n
x.each do |xi|
  d = (a-xi).to_f / 2
  puts (50-d).floor
end
0