結果

問題 No.2207 pCr検査
ユーザー tatyamtatyam
提出日時 2022-07-13 01:22:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 134,272 KB
最終ジャッジ日時 2024-07-02 18:41:43
合計ジャッジ時間 11,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 416 ms
104,064 KB
testcase_03 AC 288 ms
96,512 KB
testcase_04 AC 330 ms
95,872 KB
testcase_05 AC 449 ms
111,044 KB
testcase_06 AC 246 ms
86,376 KB
testcase_07 AC 238 ms
90,368 KB
testcase_08 AC 196 ms
87,168 KB
testcase_09 AC 360 ms
104,064 KB
testcase_10 AC 149 ms
78,208 KB
testcase_11 AC 341 ms
101,376 KB
testcase_12 AC 326 ms
105,728 KB
testcase_13 AC 213 ms
94,976 KB
testcase_14 AC 102 ms
80,768 KB
testcase_15 AC 280 ms
96,512 KB
testcase_16 AC 202 ms
93,664 KB
testcase_17 AC 258 ms
96,896 KB
testcase_18 AC 184 ms
84,480 KB
testcase_19 AC 156 ms
87,552 KB
testcase_20 AC 154 ms
83,836 KB
testcase_21 AC 392 ms
112,000 KB
testcase_22 AC 492 ms
134,272 KB
testcase_23 AC 501 ms
133,888 KB
testcase_24 AC 92 ms
78,028 KB
testcase_25 AC 238 ms
91,392 KB
testcase_26 AC 178 ms
86,200 KB
testcase_27 AC 290 ms
89,472 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 470 ms
116,224 KB
testcase_31 AC 478 ms
116,224 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 // 2):
    lg += math.log(P - i) - 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