結果

問題 No.1637 Easy Tree Query
ユーザー flippergoflippergo
提出日時 2024-10-27 21:44:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 689 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 180,220 KB
最終ジャッジ日時 2024-10-27 21:44:26
合計ジャッジ時間 14,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 36 ms
52,460 KB
testcase_02 AC 464 ms
99,624 KB
testcase_03 AC 35 ms
53,348 KB
testcase_04 AC 216 ms
89,764 KB
testcase_05 AC 369 ms
85,212 KB
testcase_06 AC 281 ms
83,112 KB
testcase_07 AC 185 ms
77,276 KB
testcase_08 AC 190 ms
86,164 KB
testcase_09 AC 380 ms
95,252 KB
testcase_10 AC 227 ms
81,964 KB
testcase_11 AC 474 ms
96,792 KB
testcase_12 AC 437 ms
92,184 KB
testcase_13 AC 164 ms
82,896 KB
testcase_14 AC 326 ms
95,464 KB
testcase_15 AC 473 ms
97,836 KB
testcase_16 AC 427 ms
98,948 KB
testcase_17 AC 191 ms
82,292 KB
testcase_18 AC 352 ms
85,060 KB
testcase_19 AC 363 ms
87,772 KB
testcase_20 AC 451 ms
91,656 KB
testcase_21 AC 284 ms
89,840 KB
testcase_22 AC 533 ms
99,524 KB
testcase_23 AC 192 ms
83,520 KB
testcase_24 AC 271 ms
90,120 KB
testcase_25 AC 377 ms
84,652 KB
testcase_26 AC 465 ms
93,072 KB
testcase_27 AC 586 ms
98,500 KB
testcase_28 AC 301 ms
84,248 KB
testcase_29 AC 412 ms
91,756 KB
testcase_30 AC 236 ms
90,976 KB
testcase_31 AC 266 ms
76,304 KB
testcase_32 AC 251 ms
84,628 KB
testcase_33 AC 350 ms
81,848 KB
testcase_34 AC 359 ms
180,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000+100)
N,Q = map(int,input().split())
G = {i:[] for i in range(1,N+1)}
for _ in range(N-1):
    a,b = map(int,input().split())
    G[a].append(b)
    G[b].append(a)
C = [0]*(N+1)
C0 = [[0,0] for _ in range(N+1)]
C0[1][0] = 1
val = 2
def dfs(i,p):
    global val
    for j in G[i]:
        if j==p:continue
        C0[j][0] = val
        val += 1
        dfs(j,i)
    C0[i][1] = val
    val += 1
dfs(1,0)
for i in range(1,N+1):
    C[i] = (C0[i][1]-C0[i][0])//2
ans = 0
for _ in range(Q):
    p,x = map(int,input().split())
    ans += (C[p]+1)*x
    print(ans)
0