結果

問題 No.553 AlphaCoder Rating
ユーザー mkawa2mkawa2
提出日時 2020-01-04 17:19:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 473 ms / 1,500 ms
コード長 1,141 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,912 KB
最終ジャッジ日時 2024-05-02 08:25:36
合計ジャッジ時間 9,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
44,908 KB
testcase_01 AC 454 ms
44,660 KB
testcase_02 AC 454 ms
44,652 KB
testcase_03 AC 455 ms
44,656 KB
testcase_04 AC 448 ms
44,660 KB
testcase_05 AC 456 ms
44,792 KB
testcase_06 AC 457 ms
44,784 KB
testcase_07 AC 457 ms
44,912 KB
testcase_08 AC 454 ms
44,668 KB
testcase_09 AC 473 ms
44,776 KB
testcase_10 AC 456 ms
44,652 KB
testcase_11 AC 450 ms
44,656 KB
testcase_12 AC 451 ms
44,672 KB
testcase_13 AC 450 ms
44,656 KB
testcase_14 AC 444 ms
44,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]

def main():
    g = lambda x: 2 ** (x / 800)
    n = II()
    rps = [II() for _ in range(n)]
    Finf = 1 / 19 ** 0.5
    Fn = ((1 - 0.81 ** n) / 19) ** 0.5 / (1 - 0.9 ** n)
    fn = (Fn - Finf) / (1 - Finf) * 1200
    rating = 800 * log2(sum(g(rp) * 0.9 ** i for i, rp in enumerate(rps,1)) / 9 / (1 - 0.9 ** n)) - fn
    print(round(rating))

main()
0