結果

問題 No.2013 Can we meet?
ユーザー Kiri8128Kiri8128
提出日時 2022-04-16 14:10:19
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 894 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 277,104 KB
最終ジャッジ日時 2024-07-04 21:59:56
合計ジャッジ時間 5,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,880 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 50 ms
62,464 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 42 ms
54,272 KB
testcase_06 AC 41 ms
53,848 KB
testcase_07 AC 41 ms
54,016 KB
testcase_08 AC 48 ms
61,824 KB
testcase_09 AC 50 ms
63,232 KB
testcase_10 AC 51 ms
63,616 KB
testcase_11 AC 51 ms
63,488 KB
testcase_12 AC 54 ms
65,024 KB
testcase_13 AC 53 ms
65,152 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
P = 998244353
def naive():
    x = abs(x1 - x2)
    y = abs(y1 - y2)

    D = defaultdict(int, {(x, y): 1})
    ANS = []
    for loop in range(n):
        for _ in range(2):
            nD = defaultdict(int)
            for k, v in D.items():
                xx, yy = k
                for nx, ny, prob in ((xx + 1, yy, alpha), (xx - 1, yy, alpha), (xx, yy + 1, beta), (xx, yy - 1, beta)):
                    nxy = (nx, ny)
                    nD[nxy] = (nD[nxy] + v * prob) % P
            D = nD
        ANS.append(D[(0, 0)])
        D[(0, 0)] = 0
    ans = 0
    for i in range(n):
        ans = (ans + ANS[i] * A[i]) % P
    return ans

n = int(input())
x1, y1, x2, y2 = map(int, input().split())
a, b = map(int, input().split())
iv = pow(2 * (a + b), P - 2, P)
alpha = a * iv % P
beta = b * iv % P

A = [int(a) for a in input().split()]
print(naive())
0