結果

問題 No.1637 Easy Tree Query
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-08-07 07:41:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 449 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 92,264 KB
最終ジャッジ日時 2024-09-17 11:22:45
合計ジャッジ時間 13,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 369 ms
88,704 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 174 ms
82,872 KB
testcase_05 AC 379 ms
81,352 KB
testcase_06 AC 243 ms
80,768 KB
testcase_07 AC 184 ms
77,080 KB
testcase_08 AC 162 ms
81,792 KB
testcase_09 AC 276 ms
86,016 KB
testcase_10 AC 198 ms
79,232 KB
testcase_11 AC 352 ms
87,424 KB
testcase_12 AC 333 ms
84,880 KB
testcase_13 AC 136 ms
79,744 KB
testcase_14 AC 226 ms
86,460 KB
testcase_15 AC 364 ms
87,556 KB
testcase_16 AC 360 ms
88,840 KB
testcase_17 AC 174 ms
79,604 KB
testcase_18 AC 310 ms
81,548 KB
testcase_19 AC 316 ms
83,260 KB
testcase_20 AC 368 ms
84,860 KB
testcase_21 AC 241 ms
83,124 KB
testcase_22 AC 376 ms
89,112 KB
testcase_23 AC 161 ms
80,372 KB
testcase_24 AC 209 ms
83,080 KB
testcase_25 AC 325 ms
81,280 KB
testcase_26 AC 365 ms
85,300 KB
testcase_27 AC 414 ms
88,920 KB
testcase_28 AC 262 ms
80,640 KB
testcase_29 AC 351 ms
83,996 KB
testcase_30 AC 177 ms
83,900 KB
testcase_31 AC 257 ms
76,288 KB
testcase_32 AC 204 ms
81,152 KB
testcase_33 AC 322 ms
79,488 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())
l = [[] for _ in range(n)]
for _ in range(n-1):
    a,b = map(int,input().split())
    l[a-1].append(b-1)
    l[b-1].append(a-1)
ans = 0
ne = [1] + [0] * (n - 1)
def dfs(node):
    res = 1
    for nd in l[node]:
        if ne[nd] == 0:
            ne[nd] = 1
            res += dfs(nd)
    ne[node] = res
    return res
dfs(0)
for _ in range(q):
    p,x = map(int,input().split())
    ans += ne[p-1] * x
    print(ans)
0