結果

問題 No.2872 Depth of the Parentheses
ユーザー tassei903tassei903
提出日時 2024-09-07 00:20:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 75,628 KB
最終ジャッジ日時 2024-09-07 00:20:33
合計ジャッジ時間 3,347 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,068 KB
testcase_01 AC 38 ms
52,896 KB
testcase_02 AC 39 ms
53,444 KB
testcase_03 AC 42 ms
57,880 KB
testcase_04 AC 56 ms
65,508 KB
testcase_05 AC 39 ms
53,092 KB
testcase_06 AC 38 ms
53,388 KB
testcase_07 AC 90 ms
75,356 KB
testcase_08 AC 37 ms
53,060 KB
testcase_09 AC 48 ms
52,336 KB
testcase_10 AC 89 ms
75,628 KB
testcase_11 AC 74 ms
75,428 KB
testcase_12 AC 73 ms
75,552 KB
testcase_13 AC 73 ms
75,584 KB
testcase_14 AC 57 ms
65,512 KB
testcase_15 AC 40 ms
53,700 KB
testcase_16 AC 93 ms
75,124 KB
testcase_17 AC 41 ms
57,260 KB
testcase_18 AC 91 ms
75,384 KB
testcase_19 AC 37 ms
52,868 KB
testcase_20 AC 95 ms
75,128 KB
testcase_21 AC 38 ms
52,480 KB
testcase_22 AC 90 ms
74,988 KB
evil_01.txt RE -
evil_02.txt RE -
evil_03.txt RE -
evil_04.txt RE -
evil_05.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

x,k = na()

assert k <= 10

def saiki(n, s, m):
    if n == 0:
        if s == 0:
            return m
        else:
            return 0
    if s < 0 or s > k:
        return 0
    
    res = saiki(n-1, s-1, m) + saiki(n-1, s+1, max(m, s+1))
    return res
mod = 998244353
# x = 1
# for i in range(k):
#     x *= i + 1
#     x *= i + 1
#     x %= mod
#     x *= pow(i*2+1, mod-2, mod)
#     x %= mod
#     x *= pow(i * 2 + 2, mod-2, mod)
#     x %= mod

print(saiki(k*2, 0, 0) * pow(x, k, mod) % mod * pow(100-x, k, mod) % mod * pow(pow(100, 2*k, mod), mod-2, mod) % mod)
0