結果

問題 No.2207 pCr検査
ユーザー tatyamtatyam
提出日時 2022-07-13 00:28:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,656 KB
最終ジャッジ日時 2024-07-02 18:41:28
合計ジャッジ時間 17,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 432 ms
95,488 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 480 ms
102,912 KB
testcase_10 AC 250 ms
77,696 KB
testcase_11 WA -
testcase_12 AC 519 ms
105,728 KB
testcase_13 AC 341 ms
94,976 KB
testcase_14 AC 137 ms
80,768 KB
testcase_15 AC 507 ms
96,896 KB
testcase_16 AC 316 ms
93,056 KB
testcase_17 AC 445 ms
96,256 KB
testcase_18 AC 317 ms
84,864 KB
testcase_19 AC 236 ms
87,296 KB
testcase_20 AC 267 ms
83,328 KB
testcase_21 AC 619 ms
112,000 KB
testcase_22 AC 800 ms
134,400 KB
testcase_23 AC 804 ms
134,656 KB
testcase_24 AC 132 ms
77,440 KB
testcase_25 AC 304 ms
91,136 KB
testcase_26 AC 253 ms
85,376 KB
testcase_27 AC 402 ms
89,728 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
input = sys.stdin.readline

k = int(input())
N = [tuple(map(int, input().split())) for _ in range(k)]
lgN = sum(math.log(p) * e for p, e in N)
p = N[-1][0]
lg = 0.0
err = math.inf
r_ans = -1
for r in range(p):
    lg += math.log(p - r)
    lg -= math.log(r + 1)
    if err > abs(lg - lgN):
        err = abs(lg - lgN)
        r_ans = r + 1

if err < 1e-14 * lgN:
    print(p, r_ans)
else:
    print(-1, -1)
0