結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,876 KB
testcase_01 AC 34 ms
53,520 KB
testcase_02 AC 315 ms
103,544 KB
testcase_03 AC 223 ms
96,108 KB
testcase_04 AC 249 ms
95,804 KB
testcase_05 AC 355 ms
111,260 KB
testcase_06 AC 234 ms
86,132 KB
testcase_07 AC 200 ms
90,032 KB
testcase_08 AC 149 ms
87,024 KB
testcase_09 AC 298 ms
103,272 KB
testcase_10 AC 141 ms
77,920 KB
testcase_11 AC 264 ms
101,184 KB
testcase_12 AC 302 ms
105,328 KB
testcase_13 AC 203 ms
94,816 KB
testcase_14 AC 94 ms
80,912 KB
testcase_15 AC 309 ms
97,092 KB
testcase_16 AC 207 ms
93,432 KB
testcase_17 AC 269 ms
96,316 KB
testcase_18 AC 183 ms
85,140 KB
testcase_19 AC 155 ms
87,796 KB
testcase_20 AC 164 ms
83,396 KB
testcase_21 AC 410 ms
112,140 KB
testcase_22 AC 526 ms
134,220 KB
testcase_23 AC 494 ms
134,420 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 min(err, err / lgN) < 1e-8:
    print(p, r_ans)
else:
    print(-1, -1)
0