結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 478 ms
103,424 KB
testcase_03 AC 298 ms
95,744 KB
testcase_04 AC 359 ms
95,360 KB
testcase_05 AC 495 ms
110,864 KB
testcase_06 AC 355 ms
85,760 KB
testcase_07 AC 276 ms
89,728 KB
testcase_08 AC 189 ms
87,680 KB
testcase_09 AC 385 ms
103,424 KB
testcase_10 AC 215 ms
78,080 KB
testcase_11 AC 364 ms
101,244 KB
testcase_12 AC 415 ms
105,380 KB
testcase_13 AC 277 ms
94,720 KB
testcase_14 AC 112 ms
80,788 KB
testcase_15 AC 420 ms
96,948 KB
testcase_16 AC 267 ms
93,952 KB
testcase_17 AC 373 ms
96,588 KB
testcase_18 AC 257 ms
85,428 KB
testcase_19 AC 181 ms
87,740 KB
testcase_20 AC 218 ms
83,744 KB
testcase_21 AC 486 ms
111,872 KB
testcase_22 AC 641 ms
134,400 KB
testcase_23 AC 638 ms
134,636 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 522 ms
115,840 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 523 ms
116,548 KB
権限があれば一括ダウンロードができます

ソースコード

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-10 * lgN:
    print(p, r_ans)
else:
    print(-1, -1)
0