結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,480 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 327 ms
103,988 KB
testcase_03 AC 226 ms
96,376 KB
testcase_04 AC 250 ms
95,800 KB
testcase_05 AC 336 ms
110,592 KB
testcase_06 AC 244 ms
85,632 KB
testcase_07 AC 211 ms
90,240 KB
testcase_08 AC 157 ms
87,168 KB
testcase_09 AC 293 ms
103,168 KB
testcase_10 AC 137 ms
78,164 KB
testcase_11 AC 273 ms
101,376 KB
testcase_12 AC 298 ms
105,344 KB
testcase_13 AC 208 ms
94,720 KB
testcase_14 AC 103 ms
81,024 KB
testcase_15 AC 300 ms
96,640 KB
testcase_16 AC 202 ms
93,848 KB
testcase_17 AC 252 ms
96,640 KB
testcase_18 AC 180 ms
85,248 KB
testcase_19 AC 151 ms
87,296 KB
testcase_20 AC 166 ms
83,388 KB
testcase_21 AC 386 ms
112,000 KB
testcase_22 AC 497 ms
134,884 KB
testcase_23 AC 512 ms
134,568 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
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_plus = 0.0
lg_minus = 0.0
err = math.inf
r_ans = -1
for r in range(p // 2):
    lg_plus += math.log(p - r)
    lg_minus += math.log(r + 1)
    if err > abs(lg_minus + lgN - lg_plus):
        err = abs(lg_minus + lgN - lg_plus)
        r_ans = r + 1

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