結果

問題 No.553 AlphaCoder Rating
ユーザー maspymaspy
提出日時 2020-01-06 23:36:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 561 ms / 1,500 ms
コード長 606 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,484 KB
最終ジャッジ日時 2024-05-02 11:05:43
合計ジャッジ時間 9,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
44,352 KB
testcase_01 AC 540 ms
44,232 KB
testcase_02 AC 542 ms
44,484 KB
testcase_03 AC 537 ms
43,944 KB
testcase_04 AC 544 ms
44,216 KB
testcase_05 AC 542 ms
43,968 KB
testcase_06 AC 542 ms
43,968 KB
testcase_07 AC 544 ms
43,968 KB
testcase_08 AC 537 ms
44,096 KB
testcase_09 AC 535 ms
43,848 KB
testcase_10 AC 541 ms
44,348 KB
testcase_11 AC 561 ms
44,364 KB
testcase_12 AC 550 ms
44,096 KB
testcase_13 AC 541 ms
43,976 KB
testcase_14 AC 531 ms
43,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N = int(readline())
R = np.array(read().split(), np.float64)

x = np.full(N+1,0.9, np.float64); x[0] = 1; np.cumprod(x,out=x)
y = np.full(N+1,0.81, np.float64); y[0] = 1; np.cumprod(y,out=y)
x[0] = 0; y[0] = 0
F = np.sqrt(y.cumsum()) / x.cumsum()

F_inf = ((81/19)**.5)/9

f = (F - F_inf) / (F[1] - F_inf) * 1200

R = np.concatenate([[0],R])
gR = np.exp(R / 800 * np.log(2))
gR *= x

answer = np.log(gR.sum() / x.sum()) / np.log(2) * 800 - f[N]

print(int(answer + .5))
0