結果

問題 No.2207 pCr検査
ユーザー dachengzdachengz
提出日時 2023-02-06 12:42:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,218 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 178,336 KB
最終ジャッジ日時 2024-07-04 17:40:51
合計ジャッジ時間 14,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 524 ms
120,716 KB
testcase_03 AC 354 ms
106,896 KB
testcase_04 AC 358 ms
106,000 KB
testcase_05 AC 544 ms
133,432 KB
testcase_06 AC 217 ms
88,976 KB
testcase_07 AC 261 ms
95,632 KB
testcase_08 AC 234 ms
91,012 KB
testcase_09 AC 439 ms
119,888 KB
testcase_10 AC 106 ms
78,188 KB
testcase_11 AC 397 ms
115,472 KB
testcase_12 AC 380 ms
121,892 KB
testcase_13 AC 267 ms
105,100 KB
testcase_14 AC 119 ms
82,816 KB
testcase_15 AC 281 ms
107,276 KB
testcase_16 AC 243 ms
101,904 KB
testcase_17 AC 291 ms
107,148 KB
testcase_18 AC 154 ms
87,664 KB
testcase_19 AC 181 ms
91,020 KB
testcase_20 AC 141 ms
84,920 KB
testcase_21 AC 463 ms
134,572 KB
testcase_22 AC 947 ms
178,336 KB
testcase_23 AC 903 ms
177,924 KB
testcase_24 AC 84 ms
77,696 KB
testcase_25 AC 225 ms
98,576 KB
testcase_26 AC 165 ms
88,692 KB
testcase_27 AC 263 ms
95,884 KB
testcase_28 WA -
testcase_29 AC 618 ms
142,092 KB
testcase_30 AC 596 ms
141,840 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log, lgamma

def deg(n, p):
    ret = 0
    n //= p
    while n:
        ret += n
        n //= p
    return ret

def isqrt(n):
    if n <= 0:
        return 0

    x = int((n ** 0.5) * (1 + 1e-14))
    while True:
        y = (x + n // x) // 2
        if y >= x:
            return x
        x = y

k = int(input())
pe = []
for _ in range(k):
    pe.append([int(x) for x in input().split()])

P = pe[-1][0]
P1 = P + 1
needlog = 0.0
for p, e in pe:
    if e > deg(P, p):
        print(-1, -1)
        exit
    needlog += log(p) * e
lgP = lgamma(P1)

lo1, hi1 = 1, P // 2
if lgP - lgamma(hi1) - lgamma(P1 - hi1) - needlog < -1e-6:
    print(-1, -1)
    exit
while hi1 - lo1 > 1:
    md = lo1 + (hi1 - lo1) // 2
    lgcomb = lgP - lgamma(md + 1) - lgamma(P1 - md)
    if lgcomb - needlog < -1e-6:
        lo1 = md
    else:
        hi1 = md

lo2, hi2 = 1, P // 2
while hi2 - lo2 > 1:
    md = lo2 + (hi2 - lo2) // 2
    lgcomb = lgP - lgamma(md + 1) - lgamma(P1 - md)
    if lgcomb - needlog > 1e-6:
        hi2 = md
    else:
        lo2 = md

for r in range(hi1, lo2 + 1):
    if all(deg(P, p) - deg(r, p) - deg(P - r, p) == e for p, e in pe):
        print(P, r)
        exit
else:
    print(-1, -1)
0