結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
15,488 KB
testcase_01 AC 89 ms
12,544 KB
testcase_02 AC 391 ms
19,584 KB
testcase_03 AC 228 ms
16,512 KB
testcase_04 AC 351 ms
19,712 KB
testcase_05 AC 190 ms
15,872 KB
testcase_06 AC 380 ms
19,456 KB
testcase_07 AC 231 ms
16,768 KB
testcase_08 AC 342 ms
19,200 KB
testcase_09 AC 185 ms
15,872 KB
testcase_10 AC 334 ms
19,200 KB
testcase_11 AC 330 ms
19,200 KB
testcase_12 AC 315 ms
18,688 KB
testcase_13 AC 387 ms
19,456 KB
testcase_14 AC 144 ms
15,616 KB
testcase_15 AC 143 ms
15,232 KB
testcase_16 AC 342 ms
19,456 KB
testcase_17 AC 192 ms
16,128 KB
testcase_18 AC 445 ms
20,352 KB
testcase_19 AC 84 ms
12,416 KB
testcase_20 AC 84 ms
12,160 KB
testcase_21 AC 85 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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