結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,628 KB
testcase_01 AC 519 ms
44,656 KB
testcase_02 AC 519 ms
44,532 KB
testcase_03 AC 522 ms
44,532 KB
testcase_04 AC 523 ms
44,784 KB
testcase_05 AC 522 ms
44,780 KB
testcase_06 AC 519 ms
44,652 KB
testcase_07 AC 519 ms
44,660 KB
testcase_08 AC 513 ms
44,544 KB
testcase_09 AC 517 ms
44,784 KB
testcase_10 AC 527 ms
44,656 KB
testcase_11 AC 524 ms
44,536 KB
testcase_12 AC 526 ms
44,540 KB
testcase_13 AC 531 ms
44,528 KB
testcase_14 AC 522 ms
44,528 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