結果

問題 No.1131 Deviation Score
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-08-02 16:26:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 73 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-06-28 03:42:29
合計ジャッジ時間 6,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
15,232 KB
testcase_01 AC 99 ms
12,032 KB
testcase_02 AC 400 ms
19,200 KB
testcase_03 AC 238 ms
16,384 KB
testcase_04 AC 365 ms
19,584 KB
testcase_05 AC 190 ms
16,000 KB
testcase_06 AC 399 ms
19,200 KB
testcase_07 AC 233 ms
16,640 KB
testcase_08 AC 346 ms
19,328 KB
testcase_09 AC 193 ms
15,872 KB
testcase_10 AC 344 ms
19,072 KB
testcase_11 AC 347 ms
19,328 KB
testcase_12 AC 320 ms
18,816 KB
testcase_13 AC 399 ms
19,328 KB
testcase_14 AC 149 ms
15,104 KB
testcase_15 AC 152 ms
14,976 KB
testcase_16 AC 367 ms
19,328 KB
testcase_17 AC 198 ms
15,872 KB
testcase_18 AC 446 ms
19,968 KB
testcase_19 AC 89 ms
12,032 KB
testcase_20 AC 89 ms
11,904 KB
testcase_21 AC 92 ms
11,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
x=gets.split.map &:to_i
s=x.sum
x.map{|y|p ((100+y)*n-s)/2/n}
0