結果

問題 No.553 AlphaCoder Rating
ユーザー convexineqconvexineq
提出日時 2021-02-25 05:01:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,500 ms
コード長 342 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-09-25 04:46:18
合計ジャッジ時間 1,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,772 KB
testcase_01 AC 37 ms
52,512 KB
testcase_02 AC 36 ms
52,956 KB
testcase_03 AC 37 ms
53,500 KB
testcase_04 AC 38 ms
52,520 KB
testcase_05 AC 38 ms
52,720 KB
testcase_06 AC 38 ms
53,916 KB
testcase_07 AC 37 ms
52,804 KB
testcase_08 AC 37 ms
53,120 KB
testcase_09 AC 37 ms
52,912 KB
testcase_10 AC 36 ms
53,296 KB
testcase_11 AC 37 ms
53,220 KB
testcase_12 AC 36 ms
52,328 KB
testcase_13 AC 37 ms
53,444 KB
testcase_14 AC 38 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a = map(int,open(0).read().split())

def h(r,n):
    return (r - r**(n+1))/(1-r)

def F(n):
    return (h(0.81,n)**0.5)/(h(0.9,n))

def f(n):
    return (F(n) - F(100000))/(F(1) - F(100000))*1200

from math import log
v = 0
for i in range(n):
    v += (2.0**(a[i]/800))*(0.9**(i+1))
v /= h(0.9,n)
ans = 800*log(v,2) - f(n)

print(int(ans))
0