結果

問題 No.553 AlphaCoder Rating
ユーザー koba-e964koba-e964
提出日時 2017-08-11 22:35:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 83 ms / 1,500 ms
コード長 477 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-20 22:50:19
合計ジャッジ時間 1,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,416 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 83 ms
12,416 KB
testcase_04 AC 78 ms
12,288 KB
testcase_05 AC 78 ms
12,288 KB
testcase_06 AC 79 ms
12,288 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 78 ms
12,160 KB
testcase_09 AC 80 ms
12,288 KB
testcase_10 AC 77 ms
12,160 KB
testcase_11 AC 78 ms
12,160 KB
testcase_12 AC 76 ms
12,288 KB
testcase_13 AC 77 ms
12,160 KB
testcase_14 AC 78 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

include Math
def bigf(n)
  num = 0.0
  den = 0.0
  for i in 1 .. n
    num += 0.81 ** i
    den += 0.9 ** i
  end
  sqrt(num) / den
end

def f(n)
  finf = bigf(400)
  1200.0 * (bigf(n) - finf) / (bigf(1) - finf)
end



n = gets.to_i
s = Array.new(n)
for i in 0 ... n
  s[i] = gets.to_f
end

num = 0.0
den = 0.0
for i in 1 .. n
  num += 2.0 ** (s[i - 1] / 800.0) * 0.9 ** i
  den += 0.9 ** i
end

rating = num / den
rating = 800.0 * log2(rating)
rating -= f(n)
puts rating.to_i
0