結果

問題 No.1637 Easy Tree Query
ユーザー moharan627moharan627
提出日時 2021-08-06 21:31:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,720 KB
最終ジャッジ日時 2024-09-17 03:41:34
合計ジャッジ時間 12,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 463 ms
28,672 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 187 ms
19,968 KB
testcase_05 AC 334 ms
17,408 KB
testcase_06 AC 230 ms
15,616 KB
testcase_07 AC 116 ms
11,008 KB
testcase_08 AC 154 ms
18,176 KB
testcase_09 AC 358 ms
24,448 KB
testcase_10 AC 173 ms
14,720 KB
testcase_11 AC 449 ms
25,856 KB
testcase_12 AC 402 ms
22,528 KB
testcase_13 AC 109 ms
14,976 KB
testcase_14 AC 284 ms
24,832 KB
testcase_15 AC 436 ms
26,496 KB
testcase_16 AC 397 ms
28,416 KB
testcase_17 AC 136 ms
14,976 KB
testcase_18 AC 319 ms
17,408 KB
testcase_19 AC 326 ms
18,816 KB
testcase_20 AC 416 ms
22,016 KB
testcase_21 AC 258 ms
20,224 KB
testcase_22 AC 520 ms
28,672 KB
testcase_23 AC 148 ms
16,000 KB
testcase_24 AC 239 ms
20,480 KB
testcase_25 AC 337 ms
16,768 KB
testcase_26 AC 432 ms
23,040 KB
testcase_27 AC 535 ms
27,904 KB
testcase_28 AC 258 ms
16,384 KB
testcase_29 AC 349 ms
21,504 KB
testcase_30 AC 210 ms
21,504 KB
testcase_31 AC 230 ms
10,752 KB
testcase_32 AC 203 ms
17,024 KB
testcase_33 AC 302 ms
14,720 KB
testcase_34 AC 282 ms
46,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
INF = float('inf')
#10**20,2**63,float('inf')
MOD = 10**9 + 7
MOD2 = 998244353
#from collections import defaultdict
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LC(): return list(input())
def IC(): return [int(c) for c in input()]
def MI(): return map(int, sys.stdin.readline().split())
N,Q = MI()
Graph = [[] for _ in range(N+1)]
for _ in range(N-1):
    A,B = MI()
    Graph[A].append(B)
    Graph[B].append(A)
sys.setrecursionlimit(10 ** 6)#再帰関数ではコメントにしないこと!!
DP = [0]*(N+1)
Seen = [False]*(N+1)
def dfs(now):
    Seen[now] = True
    DP[now] = 1
    #→nowで初めてたどり着いたときに行う処理はここで
    for next in Graph[now]:
        if not Seen[next]:
            dfs(next)
            DP[now] += DP[next]
            # next→now:戻る時に行う処理はここで
    # now←で全ての探索可ノードを終えたときに行う処理はここで
dfs(1)#根は1
#print(DP)
Ans = 0
for _ in range(Q):
    P,X = MI()
    Ans += DP[P]*X
    print(Ans)
0