結果

問題 No.1131 Deviation Score
ユーザー gemmarogemmaro
提出日時 2020-08-03 10:06:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-06-28 03:43:15
合計ジャッジ時間 5,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
13,184 KB
testcase_01 AC 96 ms
12,160 KB
testcase_02 AC 288 ms
20,096 KB
testcase_03 AC 177 ms
15,104 KB
testcase_04 AC 257 ms
18,688 KB
testcase_05 AC 157 ms
14,592 KB
testcase_06 AC 273 ms
20,224 KB
testcase_07 AC 178 ms
14,976 KB
testcase_08 AC 244 ms
17,920 KB
testcase_09 AC 145 ms
14,208 KB
testcase_10 AC 242 ms
18,432 KB
testcase_11 AC 252 ms
18,560 KB
testcase_12 AC 231 ms
18,304 KB
testcase_13 AC 278 ms
20,224 KB
testcase_14 AC 126 ms
13,312 KB
testcase_15 AC 124 ms
13,056 KB
testcase_16 AC 251 ms
18,688 KB
testcase_17 AC 159 ms
14,592 KB
testcase_18 AC 310 ms
21,248 KB
testcase_19 AC 92 ms
12,032 KB
testcase_20 AC 87 ms
12,160 KB
testcase_21 AC 90 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

def solve
  a = Rational(X.sum, N)
  X.map { |x| (50 - Rational(a - x, 2)).floor }
end

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

puts solve
0