結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,608 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 530 ms
103,808 KB
testcase_03 AC 355 ms
96,480 KB
testcase_04 AC 413 ms
96,128 KB
testcase_05 AC 576 ms
111,104 KB
testcase_06 AC 377 ms
86,016 KB
testcase_07 AC 312 ms
90,112 KB
testcase_08 AC 223 ms
87,936 KB
testcase_09 AC 461 ms
103,552 KB
testcase_10 AC 238 ms
77,952 KB
testcase_11 AC 448 ms
101,632 KB
testcase_12 AC 425 ms
105,428 KB
testcase_13 AC 297 ms
94,464 KB
testcase_14 AC 119 ms
81,024 KB
testcase_15 AC 430 ms
96,884 KB
testcase_16 AC 262 ms
93,824 KB
testcase_17 AC 359 ms
96,896 KB
testcase_18 AC 260 ms
84,876 KB
testcase_19 AC 184 ms
87,424 KB
testcase_20 AC 229 ms
83,840 KB
testcase_21 AC 499 ms
112,180 KB
testcase_22 AC 638 ms
134,528 KB
testcase_23 AC 618 ms
134,528 KB
testcase_24 AC 116 ms
77,824 KB
testcase_25 AC 268 ms
91,648 KB
testcase_26 AC 225 ms
85,888 KB
testcase_27 AC 361 ms
89,876 KB
testcase_28 AC 588 ms
116,224 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 613 ms
116,480 KB
権限があれば一括ダウンロードができます

ソースコード

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 = 0.0
err = math.inf
R = -1
for i in range(P):
    lg += math.log(P - i)
    lg -= math.log(i + 1)
    if err > abs(lg - lgN):
        err = abs(lg - lgN)
        R = i + 1

for p, e in N:
    def f(x):
        ans = 0
        while True:
            x //= p
            if x == 0:
                return ans
            ans += x
    if e != f(P) - f(P - R) - f(R):
        exit(print(-1, -1))

print(P, R)
0