結果

問題 No.2427 Tree Distance Two
ユーザー timitimi
提出日時 2023-08-18 21:30:01
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 370 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 577,036 KB
最終ジャッジ日時 2024-11-28 05:45:51
合計ジャッジ時間 34,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,600 KB
testcase_01 MLE -
testcase_02 AC 40 ms
56,832 KB
testcase_03 AC 1,398 ms
443,264 KB
testcase_04 AC 40 ms
57,472 KB
testcase_05 AC 1,388 ms
511,300 KB
testcase_06 AC 40 ms
56,832 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 456 ms
192,000 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 37 ms
51,456 KB
testcase_18 AC 38 ms
52,480 KB
testcase_19 AC 36 ms
51,840 KB
testcase_20 AC 107 ms
78,464 KB
testcase_21 AC 123 ms
78,592 KB
testcase_22 AC 106 ms
76,800 KB
testcase_23 AC 96 ms
74,752 KB
testcase_24 AC 117 ms
78,080 KB
testcase_25 AC 312 ms
106,752 KB
testcase_26 AC 761 ms
149,120 KB
testcase_27 AC 522 ms
129,280 KB
testcase_28 AC 1,229 ms
185,728 KB
testcase_29 AC 1,064 ms
172,032 KB
testcase_30 AC 748 ms
147,072 KB
testcase_31 AC 508 ms
122,624 KB
testcase_32 AC 733 ms
146,688 KB
testcase_33 AC 635 ms
138,752 KB
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

##N,K=map(int, input().split())
#A=list(map(int, input().split()))
N=int(input())
D=[[]for _ in range(N)]
E=[set() for _ in range(N)]
for i in range(N-1):
  u,v=map(int, input().split())
  u-=1;v-=1
  D[u].append(v);D[v].append(u)
  E[u].add(v);E[v].add(u)

ans=[]
for i in range(N):
  C=set()
  for now in D[i]:
    for nex in D[now]:
      C.add(nex)
  print(len(C)-1)
0