結果

問題 No.1131 Deviation Score
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-11-06 19:47:18
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-07-22 11:50:53
合計ジャッジ時間 5,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
13,440 KB
testcase_01 AC 97 ms
12,032 KB
testcase_02 AC 206 ms
20,096 KB
testcase_03 AC 152 ms
15,104 KB
testcase_04 AC 204 ms
18,048 KB
testcase_05 AC 136 ms
14,464 KB
testcase_06 AC 207 ms
19,968 KB
testcase_07 AC 151 ms
14,976 KB
testcase_08 AC 195 ms
18,176 KB
testcase_09 AC 130 ms
14,464 KB
testcase_10 AC 190 ms
18,048 KB
testcase_11 AC 191 ms
17,920 KB
testcase_12 AC 180 ms
18,048 KB
testcase_13 AC 209 ms
19,840 KB
testcase_14 AC 120 ms
13,184 KB
testcase_15 AC 117 ms
13,184 KB
testcase_16 AC 197 ms
18,048 KB
testcase_17 AC 132 ms
14,720 KB
testcase_18 AC 220 ms
20,992 KB
testcase_19 AC 91 ms
12,160 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

v = [gets.to_i, gets.split.map(&:to_i)]
AVG = v[1].sum / v[0]
v[1].each{|x| puts (50 - (AVG - x) / 2).floor - 1 }
0