結果

問題 No.2207 pCr検査
ユーザー tatyamtatyam
提出日時 2022-07-13 00:01:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 134,272 KB
最終ジャッジ日時 2024-07-02 18:39:38
合計ジャッジ時間 14,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,712 KB
testcase_01 AC 40 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 WA -
testcase_11 WA -
testcase_12 AC 398 ms
105,088 KB
testcase_13 AC 304 ms
94,976 KB
testcase_14 AC 119 ms
80,896 KB
testcase_15 AC 362 ms
96,512 KB
testcase_16 AC 253 ms
93,696 KB
testcase_17 AC 324 ms
96,000 KB
testcase_18 AC 226 ms
84,736 KB
testcase_19 AC 189 ms
87,040 KB
testcase_20 AC 197 ms
83,200 KB
testcase_21 AC 467 ms
111,872 KB
testcase_22 AC 630 ms
134,144 KB
testcase_23 AC 643 ms
134,272 KB
testcase_24 AC 108 ms
77,824 KB
testcase_25 AC 237 ms
91,392 KB
testcase_26 AC 196 ms
85,248 KB
testcase_27 AC 285 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_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:
    print(p, r_ans)
else:
    print(-1, -1)
0