結果

問題 No.1131 Deviation Score
ユーザー cielciel
提出日時 2021-05-04 12:48:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-07-23 08:05:20
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
14,720 KB
testcase_01 AC 99 ms
12,288 KB
testcase_02 AC 221 ms
21,632 KB
testcase_03 AC 150 ms
17,664 KB
testcase_04 AC 202 ms
21,760 KB
testcase_05 AC 138 ms
17,024 KB
testcase_06 AC 211 ms
21,504 KB
testcase_07 AC 151 ms
17,792 KB
testcase_08 AC 196 ms
21,376 KB
testcase_09 AC 133 ms
16,768 KB
testcase_10 AC 190 ms
21,120 KB
testcase_11 AC 195 ms
21,376 KB
testcase_12 AC 181 ms
20,608 KB
testcase_13 AC 211 ms
21,504 KB
testcase_14 AC 120 ms
15,232 KB
testcase_15 AC 119 ms
15,232 KB
testcase_16 AC 194 ms
21,504 KB
testcase_17 AC 139 ms
16,896 KB
testcase_18 AC 232 ms
22,656 KB
testcase_19 AC 92 ms
12,032 KB
testcase_20 AC 93 ms
12,288 KB
testcase_21 AC 92 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

n,*x=`dd`.split.map &:to_i;s=x.sum
p *x.map{|e|(100*n-s+e*n)/2/n}
0