結果

問題 No.553 AlphaCoder Rating
ユーザー qibqib
提出日時 2023-02-19 15:56:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,500 ms
コード長 393 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 52,864 KB
最終ジャッジ日時 2024-07-20 16:01:59
合計ジャッジ時間 1,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 41 ms
52,864 KB
testcase_11 AC 42 ms
52,480 KB
testcase_12 AC 42 ms
52,352 KB
testcase_13 AC 42 ms
52,864 KB
testcase_14 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())

cf1 = 1.0
cfn = math.sqrt(1.0 - pow(0.81, n)) / ((1.0 - pow(0.9, n)) * math.sqrt(19))
cfinfty = 1 / math.sqrt(19)
fn = 1200 * (cfn - cfinfty) / (cf1 - cfinfty)

den = 9.0 * (1.0 - pow(0.9, n))
num = 0
ai = 1.0
for _ in range(n):
  rperf_i = int(input())
  ai *= 0.9
  num += pow(2.0, rperf_i / 800) * ai

ans = 800 * math.log(num / den, 2) - fn
print(round(ans))
0