結果

問題 No.2618 除霊
ユーザー ニックネームニックネーム
提出日時 2024-01-26 23:05:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 743 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 159,196 KB
最終ジャッジ日時 2024-09-28 08:57:04
合計ジャッジ時間 26,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 669 ms
116,352 KB
testcase_07 AC 585 ms
116,096 KB
testcase_08 AC 683 ms
126,848 KB
testcase_09 AC 708 ms
136,704 KB
testcase_10 AC 641 ms
152,412 KB
testcase_11 AC 545 ms
112,316 KB
testcase_12 AC 706 ms
126,336 KB
testcase_13 AC 447 ms
111,556 KB
testcase_14 AC 518 ms
159,196 KB
testcase_15 AC 460 ms
111,424 KB
testcase_16 AC 474 ms
110,804 KB
testcase_17 AC 570 ms
133,356 KB
testcase_18 AC 562 ms
157,568 KB
testcase_19 AC 505 ms
111,196 KB
testcase_20 AC 473 ms
111,440 KB
testcase_21 AC 553 ms
129,684 KB
testcase_22 AC 574 ms
158,168 KB
testcase_23 AC 528 ms
113,468 KB
testcase_24 AC 527 ms
111,476 KB
testcase_25 AC 601 ms
132,016 KB
testcase_26 AC 566 ms
157,932 KB
testcase_27 AC 513 ms
111,092 KB
testcase_28 AC 506 ms
113,516 KB
testcase_29 AC 617 ms
132,076 KB
testcase_30 AC 629 ms
156,532 KB
testcase_31 AC 708 ms
125,920 KB
testcase_32 AC 526 ms
106,608 KB
testcase_33 AC 573 ms
108,416 KB
testcase_34 AC 620 ms
113,084 KB
testcase_35 AC 595 ms
118,912 KB
testcase_36 AC 680 ms
121,984 KB
testcase_37 AC 646 ms
127,048 KB
testcase_38 AC 743 ms
132,224 KB
testcase_39 AC 663 ms
136,288 KB
testcase_40 AC 683 ms
140,160 KB
testcase_41 AC 692 ms
147,416 KB
testcase_42 AC 681 ms
152,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
adj = [[] for _ in range(n)]
for _ in range(n-1):
    a,b = map(int,input().split())
    adj[a-1].append(b-1); adj[b-1].append(a-1)
m = int(input())
a = {v-1 for v in map(int,input().split())}
c = [0]*n; d = [0]*n
for p in range(n):
    c[p] = p in a
    for v in adj[p]: c[p] += v in a
for p in range(n):
    if p in a:
        for v in adj[p]: d[p] += c[v]==1
s = sum(c[p]>0 for p in range(n))
for p in range(n):
    t = s-(c[p]>0)
    for v in adj[p]:
        if c[v]: t -= c[v]-(p in a)-(v in a)==0
        if v in a: t -= d[v]-(c[p]==1)
    print(t)
0