結果

問題 No.553 AlphaCoder Rating
ユーザー dangodango
提出日時 2023-06-13 20:58:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,500 ms
コード長 369 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-06-22 07:08:33
合計ジャッジ時間 1,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,000 KB
testcase_01 AC 37 ms
52,672 KB
testcase_02 AC 39 ms
52,784 KB
testcase_03 AC 36 ms
53,872 KB
testcase_04 AC 36 ms
53,196 KB
testcase_05 AC 36 ms
53,200 KB
testcase_06 AC 35 ms
53,044 KB
testcase_07 AC 33 ms
53,852 KB
testcase_08 AC 33 ms
53,604 KB
testcase_09 AC 33 ms
54,256 KB
testcase_10 AC 32 ms
53,316 KB
testcase_11 AC 33 ms
53,312 KB
testcase_12 AC 35 ms
53,764 KB
testcase_13 AC 33 ms
53,408 KB
testcase_14 AC 34 ms
53,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
F = lambda n: math.sqrt(sum([0.81 ** i for i in range(1, n + 1)])) / sum([0.9 ** i for i in range(1, n + 1)])
g = lambda x: 2 ** (x / 800)
print(int(800 * math.log((sum([g(int(input())) * (0.9 ** i) for i in range(1, N + 1)]) / sum([0.9 ** i for i in range(1, N + 1)])), 2) - (F(N) - 1 / math.sqrt(19)) / (F(1) - 1 / math.sqrt(19)) * 1200))
0