結果

問題 No.2618 除霊
ユーザー ニックネームニックネーム
提出日時 2024-01-26 23:04:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 571 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 73,376 KB
最終ジャッジ日時 2024-09-28 08:56:36
合計ジャッジ時間 79,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 1,981 ms
52,200 KB
testcase_07 AC 1,982 ms
51,864 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,761 ms
50,584 KB
testcase_12 TLE -
testcase_13 AC 1,693 ms
47,872 KB
testcase_14 TLE -
testcase_15 AC 1,474 ms
47,616 KB
testcase_16 AC 1,546 ms
47,996 KB
testcase_17 AC 1,898 ms
59,908 KB
testcase_18 TLE -
testcase_19 AC 1,654 ms
49,536 KB
testcase_20 AC 1,532 ms
47,744 KB
testcase_21 AC 1,786 ms
57,836 KB
testcase_22 AC 1,997 ms
67,848 KB
testcase_23 AC 1,783 ms
49,408 KB
testcase_24 AC 1,770 ms
48,768 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,784 ms
48,640 KB
testcase_28 AC 1,798 ms
48,640 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,697 ms
47,616 KB
testcase_33 AC 1,877 ms
51,152 KB
testcase_34 AC 1,890 ms
50,804 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

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