結果

問題 No.1637 Easy Tree Query
ユーザー momoyuumomoyuu
提出日時 2022-08-03 00:56:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 189,476 KB
最終ジャッジ日時 2024-07-23 19:09:18
合計ジャッジ時間 14,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,536 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 440 ms
99,548 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 195 ms
89,188 KB
testcase_05 AC 358 ms
85,112 KB
testcase_06 AC 283 ms
82,772 KB
testcase_07 AC 191 ms
77,564 KB
testcase_08 AC 169 ms
86,044 KB
testcase_09 AC 313 ms
94,508 KB
testcase_10 AC 225 ms
81,800 KB
testcase_11 AC 409 ms
95,900 KB
testcase_12 AC 403 ms
91,652 KB
testcase_13 AC 158 ms
81,856 KB
testcase_14 AC 255 ms
94,204 KB
testcase_15 AC 384 ms
96,516 KB
testcase_16 AC 326 ms
99,368 KB
testcase_17 AC 186 ms
82,264 KB
testcase_18 AC 356 ms
84,840 KB
testcase_19 AC 334 ms
86,796 KB
testcase_20 AC 390 ms
90,664 KB
testcase_21 AC 254 ms
89,556 KB
testcase_22 AC 420 ms
99,256 KB
testcase_23 AC 183 ms
83,152 KB
testcase_24 AC 232 ms
88,832 KB
testcase_25 AC 362 ms
84,416 KB
testcase_26 AC 397 ms
92,176 KB
testcase_27 AC 467 ms
97,816 KB
testcase_28 AC 288 ms
84,164 KB
testcase_29 AC 336 ms
90,380 KB
testcase_30 AC 184 ms
90,324 KB
testcase_31 AC 268 ms
76,224 KB
testcase_32 AC 234 ms
84,968 KB
testcase_33 AC 354 ms
81,812 KB
testcase_34 AC 330 ms
189,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
def f(n):
    return int(n) - 1
ab = [list(map(f,input().split( ))) for _ in range(N-1)]
import sys
sys.setrecursionlimit(10**8)
e = [[] for _ in range(N)]
for i in range(N-1):
    a,b = ab[i]
    e[a].append(b)
    e[b].append(a)
d = [0 for _ in range(N)]
def dfs(n):
    d[n] += 1
    for i in e[n]:
        if d[i] != 0:
            continue
        dfs(i)
        d[n] += d[i]
dfs(0)
sum = 0

for i in range(Q):
    p,x = map(int,input().split())
    sum += d[p-1]*x
    print(sum)
0