結果

問題 No.1289 RNG and OR
ユーザー chineristACchineristAC
提出日時 2020-11-13 22:02:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 136,880 KB
最終ジャッジ日時 2024-07-22 20:50:46
合計ジャッジ時間 3,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 46 ms
60,032 KB
testcase_11 AC 49 ms
61,952 KB
testcase_12 AC 50 ms
63,232 KB
testcase_13 AC 65 ms
70,160 KB
testcase_14 AC 71 ms
72,320 KB
testcase_15 AC 82 ms
78,328 KB
testcase_16 AC 96 ms
79,488 KB
testcase_17 AC 129 ms
81,864 KB
testcase_18 AC 202 ms
91,316 KB
testcase_19 AC 374 ms
104,404 KB
testcase_20 AC 725 ms
136,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(x):
    x = x - ((x >> 1) & 0x55555555)
    x = (x & 0x33333333) + ((x >> 2) & 0x33333333)
    x = (x + (x >> 4)) & 0x0f0f0f0f
    x = x + (x >> 8)
    x = x + (x >> 16)
    return x & 0x0000007f

N = int(input())
A = list(map(int,input().split()))
mod = 998244353
S = sum(A)
inv = pow(S,mod-2,mod)

dp = [[0 for j in range(N+1)] for i in range(2**N)]
for i in range(2**N):
    dp[i][0] = inv * A[i] % mod

for j in range(N):
    for i in range(2**N):
        if i&(1<<j):
            dp[i][j+1] = dp[i & ~(1<<j)][j] + dp[i][j]
        else:
            dp[i][j+1] = dp[i][j]

#for i in range(2**N):
    #print(dp[i][N]*S %mod)

res = 0
for i in range(2**N-1):
    res += pow(-1,N-1-popcount(i),mod) * pow(1-dp[i][N],mod-2,mod)
    res %= mod

print(res)
0