結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 34 ms
52,864 KB
testcase_02 AC 471 ms
104,192 KB
testcase_03 AC 312 ms
96,128 KB
testcase_04 AC 361 ms
96,184 KB
testcase_05 AC 497 ms
110,976 KB
testcase_06 AC 318 ms
86,016 KB
testcase_07 AC 265 ms
89,856 KB
testcase_08 AC 203 ms
87,680 KB
testcase_09 AC 402 ms
103,892 KB
testcase_10 AC 193 ms
78,208 KB
testcase_11 AC 407 ms
101,376 KB
testcase_12 AC 391 ms
105,472 KB
testcase_13 AC 242 ms
95,016 KB
testcase_14 AC 103 ms
80,856 KB
testcase_15 AC 362 ms
96,768 KB
testcase_16 AC 227 ms
93,508 KB
testcase_17 AC 315 ms
96,464 KB
testcase_18 AC 225 ms
85,248 KB
testcase_19 AC 174 ms
87,296 KB
testcase_20 AC 193 ms
83,712 KB
testcase_21 AC 429 ms
112,128 KB
testcase_22 AC 564 ms
134,680 KB
testcase_23 AC 562 ms
134,484 KB
testcase_24 AC 105 ms
78,276 KB
testcase_25 AC 250 ms
92,140 KB
testcase_26 AC 207 ms
85,760 KB
testcase_27 AC 317 ms
89,600 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 = -1
for i in range(P // 2):
    lg_plus += math.log(P - i)
    lg_minus += math.log(i + 1)
    if err > abs(lgN - lg_plus + lg_minus):
        err = abs(lgN - lg_plus + lg_minus)
        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