結果

問題 No.1131 Deviation Score
ユーザー simansiman
提出日時 2020-07-28 01:36:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-06-28 03:38:13
合計ジャッジ時間 5,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
13,440 KB
testcase_01 AC 95 ms
12,288 KB
testcase_02 AC 291 ms
20,352 KB
testcase_03 AC 181 ms
15,232 KB
testcase_04 AC 259 ms
18,816 KB
testcase_05 AC 157 ms
14,592 KB
testcase_06 AC 280 ms
20,352 KB
testcase_07 AC 181 ms
15,104 KB
testcase_08 AC 252 ms
18,688 KB
testcase_09 AC 155 ms
14,592 KB
testcase_10 AC 249 ms
18,560 KB
testcase_11 AC 253 ms
18,816 KB
testcase_12 AC 238 ms
18,560 KB
testcase_13 AC 282 ms
20,224 KB
testcase_14 AC 132 ms
13,568 KB
testcase_15 AC 129 ms
13,568 KB
testcase_16 AC 253 ms
18,688 KB
testcase_17 AC 162 ms
14,848 KB
testcase_18 AC 313 ms
21,248 KB
testcase_19 AC 94 ms
12,032 KB
testcase_20 AC 91 ms
12,288 KB
testcase_21 AC 91 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
X = gets.split.map(&:to_i)

a = Rational(X.sum, N)

puts X.map { |x| (50 - Rational(a - x, 2)).floor }
0