結果

問題 No.2377 SUM AND XOR on Tree
ユーザー ニックネームニックネーム
提出日時 2023-07-07 23:15:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,905 ms / 4,000 ms
コード長 533 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,004 KB
最終ジャッジ日時 2024-07-21 19:39:40
合計ジャッジ時間 6,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 3,590 ms
38,340 KB
testcase_09 AC 3,599 ms
38,344 KB
testcase_10 AC 3,532 ms
38,484 KB
testcase_11 AC 3,607 ms
38,348 KB
testcase_12 AC 3,607 ms
38,340 KB
testcase_13 AC 3,621 ms
38,088 KB
testcase_14 AC 3,450 ms
37,096 KB
testcase_15 AC 3,632 ms
37,924 KB
testcase_16 AC 3,486 ms
37,476 KB
testcase_17 AC 3,585 ms
37,740 KB
testcase_18 AC 34 ms
10,624 KB
testcase_19 AC 33 ms
10,752 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 2,913 ms
29,440 KB
testcase_24 AC 2,942 ms
29,312 KB
testcase_25 AC 3,846 ms
38,596 KB
testcase_26 AC 3,905 ms
52,984 KB
testcase_27 AC 3,836 ms
52,956 KB
testcase_28 AC 3,847 ms
53,004 KB
testcase_29 AC 2,803 ms
35,832 KB
testcase_30 AC 2,787 ms
35,840 KB
testcase_31 AC 2,782 ms
35,828 KB
testcase_32 AC 2,275 ms
38,112 KB
testcase_33 AC 2,262 ms
38,108 KB
testcase_34 AC 2,261 ms
37,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
setrecursionlimit(10**7)
n = int(input())
adj = [[] for _ in range(n)]
for _ in range(n-1):
    u,v = map(int,input().split())
    adj[u-1].append(v-1); adj[v-1].append(u-1)
a = list(map(int,input().split()))
mod = 998244353; ans = 0
def dfs(v,p):
    v0 = a[v]>>i&1^1; v1 = a[v]>>i&1
    for c in adj[v]:
        if c==p: continue
        c0,c1 = dfs(c,v)
        v0,v1 = (v0*c0+v1*c1+v0*c1)%mod,(v0*c1+v1*c0+v1*c1)%mod
    return v0,v1
for i in range(30): ans += (1<<i)*dfs(0,-1)[1]
print(ans%mod)
0