結果

問題 No.2207 pCr検査
ユーザー tatyamtatyam
提出日時 2022-07-13 01:21:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 134,400 KB
最終ジャッジ日時 2024-07-02 18:42:50
合計ジャッジ時間 16,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 643 ms
103,296 KB
testcase_03 AC 429 ms
96,128 KB
testcase_04 AC 483 ms
95,872 KB
testcase_05 AC 684 ms
111,104 KB
testcase_06 AC 441 ms
85,760 KB
testcase_07 AC 376 ms
89,600 KB
testcase_08 AC 278 ms
87,296 KB
testcase_09 AC 553 ms
103,680 KB
testcase_10 AC 258 ms
77,952 KB
testcase_11 AC 524 ms
101,248 KB
testcase_12 AC 520 ms
105,088 KB
testcase_13 AC 342 ms
94,848 KB
testcase_14 AC 136 ms
80,768 KB
testcase_15 AC 500 ms
96,768 KB
testcase_16 AC 317 ms
93,824 KB
testcase_17 AC 433 ms
95,872 KB
testcase_18 AC 310 ms
85,248 KB
testcase_19 AC 239 ms
87,552 KB
testcase_20 AC 264 ms
83,328 KB
testcase_21 AC 607 ms
112,000 KB
testcase_22 AC 790 ms
134,400 KB
testcase_23 AC 791 ms
134,144 KB
testcase_24 AC 145 ms
77,696 KB
testcase_25 AC 343 ms
91,648 KB
testcase_26 AC 279 ms
85,376 KB
testcase_27 AC 435 ms
89,472 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 758 ms
116,224 KB
testcase_31 AC 756 ms
115,840 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) - 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