結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 143 ms
77,896 KB
testcase_11 WA -
testcase_12 AC 310 ms
105,728 KB
testcase_13 AC 217 ms
94,464 KB
testcase_14 AC 90 ms
80,768 KB
testcase_15 AC 290 ms
97,076 KB
testcase_16 AC 210 ms
93,824 KB
testcase_17 AC 268 ms
96,640 KB
testcase_18 AC 185 ms
85,120 KB
testcase_19 AC 153 ms
87,808 KB
testcase_20 AC 153 ms
83,664 KB
testcase_21 AC 368 ms
112,512 KB
testcase_22 AC 509 ms
134,784 KB
testcase_23 AC 511 ms
134,272 KB
testcase_24 AC 84 ms
77,748 KB
testcase_25 AC 193 ms
91,776 KB
testcase_26 AC 166 ms
85,404 KB
testcase_27 AC 235 ms
89,904 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_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-8:
    print(p, r_ans)
else:
    print(-1, -1)
0