結果

問題 No.2872 Depth of the Parentheses
ユーザー Alp başarAlp başar
提出日時 2024-09-06 23:19:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,594 ms / 2,000 ms
コード長 1,525 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 152,364 KB
最終ジャッジ日時 2024-09-06 23:20:16
合計ジャッジ時間 24,255 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,920 KB
testcase_01 AC 52 ms
139,824 KB
testcase_02 AC 47 ms
69,040 KB
testcase_03 AC 67 ms
150,404 KB
testcase_04 AC 83 ms
83,260 KB
testcase_05 AC 38 ms
129,200 KB
testcase_06 AC 39 ms
59,396 KB
testcase_07 AC 1,514 ms
152,364 KB
testcase_08 AC 58 ms
74,928 KB
testcase_09 AC 49 ms
61,472 KB
testcase_10 AC 409 ms
76,160 KB
testcase_11 AC 154 ms
76,276 KB
testcase_12 AC 101 ms
75,712 KB
testcase_13 AC 142 ms
76,192 KB
testcase_14 AC 83 ms
75,784 KB
testcase_15 AC 57 ms
66,956 KB
testcase_16 AC 1,387 ms
76,104 KB
testcase_17 AC 65 ms
73,876 KB
testcase_18 AC 1,594 ms
76,056 KB
testcase_19 AC 39 ms
52,004 KB
testcase_20 AC 856 ms
75,812 KB
testcase_21 AC 39 ms
53,416 KB
testcase_22 AC 853 ms
76,164 KB
evil_01.txt TLE -
evil_02.txt TLE -
evil_03.txt TLE -
evil_04.txt TLE -
evil_05.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def power(x, y, m):
    if y == 0:
        return 1
    p = power(x, y // 2, m) % m
    p = (p * p) % m
    return p if y % 2 == 0 else (x * p) % m

def modInverse(a, m):
    g = gcd(a, m)
    # If a and m are relatively prime, then modulo inverse is a^(m-2) mode m
    return power(a, m - 2, m)

def gcd(a, b):
    if a == 0:
        return b
    return gcd(b % a, a)

def main():
    inputs = input().split()
    intinputs = [int(i) for i in inputs]
    x = intinputs[0]
    k = intinputs[1]
    # x = int(input())
    # k = int(input())
    depth = [0] * (k + 1)
    modwith = 998244353
    pleft = x * modInverse(100, modwith)
    pright = (100 - x) * modInverse(100, modwith)
    
    
    for i in range(1 << (k * 2)):
        op = 0
        best = 0
        
        prob = 1
        pprob = 1.0
        good = True
        
        for j in range(k * 2):
            if i & (1 << j):
                op += 1
                prob *= pleft
            else:
                op -= 1
                prob *= pright
            
            prob %= modwith
            
            if op < 0:
                good = False
            
            best = max(best, op)
        
        if op != 0:
            good = False
        
        if not good:
            best = 0
        
        depth[best] += prob
        depth[best] %= modwith
    
    exp = 0
    
    for i in range(k + 1):
        exp += depth[i] * i
        exp %= modwith
    
    print((exp + modwith) % modwith)

if __name__ == "__main__":
    main()
0