結果

問題 No.1637 Easy Tree Query
ユーザー tonyu0tonyu0
提出日時 2022-09-21 17:39:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,186 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,744 KB
最終ジャッジ日時 2024-06-01 17:30:17
合計ジャッジ時間 25,255 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 1,091 ms
27,904 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 342 ms
19,840 KB
testcase_05 AC 828 ms
17,408 KB
testcase_06 AC 559 ms
15,616 KB
testcase_07 AC 285 ms
11,264 KB
testcase_08 AC 273 ms
17,920 KB
testcase_09 AC 746 ms
23,808 KB
testcase_10 AC 394 ms
14,464 KB
testcase_11 AC 1,002 ms
25,472 KB
testcase_12 AC 935 ms
22,144 KB
testcase_13 AC 195 ms
14,848 KB
testcase_14 AC 556 ms
24,192 KB
testcase_15 AC 949 ms
25,984 KB
testcase_16 AC 819 ms
27,648 KB
testcase_17 AC 292 ms
14,720 KB
testcase_18 AC 774 ms
17,152 KB
testcase_19 AC 765 ms
18,560 KB
testcase_20 AC 993 ms
21,760 KB
testcase_21 AC 554 ms
19,968 KB
testcase_22 AC 1,109 ms
27,904 KB
testcase_23 AC 300 ms
15,616 KB
testcase_24 AC 470 ms
19,968 KB
testcase_25 AC 843 ms
16,768 KB
testcase_26 AC 1,017 ms
22,656 KB
testcase_27 AC 1,186 ms
27,264 KB
testcase_28 AC 626 ms
16,384 KB
testcase_29 AC 795 ms
21,120 KB
testcase_30 AC 363 ms
21,120 KB
testcase_31 AC 623 ms
10,624 KB
testcase_32 AC 429 ms
16,896 KB
testcase_33 AC 772 ms
14,592 KB
testcase_34 AC 489 ms
47,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(200000)
n,q=map(int,input().split())
g=[[] for _ in range(n)]
for _ in range(n-1):
    a,b=map(lambda x: int(x)-1,input().split())
    g[a].append(b)
    g[b].append(a)

ch=[0]*n
def rec(v, p= -1):
    ret = 1
    for nv in g[v]:
        if nv==p:continue
        ret += rec(nv, v)
    ch[v] = ret
    return ret
rec(0)
ans=0
for _ in range(q):
    p,x=map(int,input().split())
    p -= 1
    ans += ch[p] * x
    print(ans)
0