結果

問題 No.1131 Deviation Score
ユーザー masashi0217masashi0217
提出日時 2020-08-02 13:49:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-06-28 03:42:20
合計ジャッジ時間 4,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
13,568 KB
testcase_01 AC 89 ms
12,032 KB
testcase_02 AC 199 ms
19,584 KB
testcase_03 AC 135 ms
15,104 KB
testcase_04 AC 182 ms
17,920 KB
testcase_05 AC 129 ms
14,592 KB
testcase_06 AC 188 ms
19,456 KB
testcase_07 AC 136 ms
15,232 KB
testcase_08 AC 179 ms
17,920 KB
testcase_09 AC 118 ms
14,464 KB
testcase_10 AC 179 ms
17,920 KB
testcase_11 AC 182 ms
18,048 KB
testcase_12 AC 171 ms
18,048 KB
testcase_13 AC 194 ms
19,456 KB
testcase_14 AC 108 ms
13,184 KB
testcase_15 AC 108 ms
13,056 KB
testcase_16 AC 184 ms
18,304 KB
testcase_17 AC 125 ms
14,720 KB
testcase_18 AC 207 ms
20,736 KB
testcase_19 AC 84 ms
12,160 KB
testcase_20 AC 84 ms
12,032 KB
testcase_21 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - heikin
Syntax OK

ソースコード

diff #

n = gets.to_i
x = gets.chomp.split(" ").map(&:to_i)
a = x.inject(:+)
heikin = a / n
x.each do |i|
    puts (100* n - a + i * n) / (2 * n)
end
0