結果

問題 No.2638 Initial fare
ユーザー tipstar0125tipstar0125
提出日時 2024-02-20 13:21:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 89,260 KB
最終ジャッジ日時 2024-09-29 03:42:43
合計ジャッジ時間 6,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,780 KB
testcase_01 AC 36 ms
53,488 KB
testcase_02 AC 36 ms
52,444 KB
testcase_03 AC 39 ms
53,456 KB
testcase_04 AC 203 ms
88,924 KB
testcase_05 AC 213 ms
89,008 KB
testcase_06 AC 37 ms
52,216 KB
testcase_07 AC 209 ms
89,092 KB
testcase_08 AC 196 ms
88,552 KB
testcase_09 AC 207 ms
88,992 KB
testcase_10 AC 211 ms
89,012 KB
testcase_11 AC 36 ms
52,684 KB
testcase_12 AC 206 ms
88,824 KB
testcase_13 AC 189 ms
88,368 KB
testcase_14 AC 205 ms
88,604 KB
testcase_15 AC 212 ms
89,004 KB
testcase_16 AC 39 ms
53,088 KB
testcase_17 AC 203 ms
88,936 KB
testcase_18 AC 206 ms
88,524 KB
testcase_19 AC 206 ms
88,560 KB
testcase_20 AC 203 ms
88,940 KB
testcase_21 AC 212 ms
89,112 KB
testcase_22 AC 38 ms
53,292 KB
testcase_23 AC 208 ms
89,220 KB
testcase_24 AC 214 ms
89,144 KB
testcase_25 AC 38 ms
52,500 KB
testcase_26 AC 211 ms
88,880 KB
testcase_27 AC 209 ms
89,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
degs=[0 for _ in range(N)]
UV=[]
for _ in range(N-1):
    u,v=map(int,input().split())
    u-=1
    v-=1
    UV.append((u,v))
    degs[u]+=1
    degs[v]+=1

ans=N-1
for i in range(N):
    ans+=degs[i]*(degs[i]-1)//2
for (u,v) in UV:
    ans+=(degs[u]-1)*(degs[v]-1)
print(ans)
0