結果

問題 No.2638 Initial fare
ユーザー nikoro256nikoro256
提出日時 2024-02-19 21:31:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,460 KB
最終ジャッジ日時 2024-10-01 16:11:37
合計ジャッジ時間 6,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,096 KB
testcase_01 AC 31 ms
51,840 KB
testcase_02 AC 31 ms
51,968 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 163 ms
88,788 KB
testcase_05 AC 175 ms
89,120 KB
testcase_06 AC 32 ms
51,584 KB
testcase_07 AC 171 ms
88,836 KB
testcase_08 AC 173 ms
89,424 KB
testcase_09 AC 173 ms
89,240 KB
testcase_10 AC 170 ms
90,460 KB
testcase_11 AC 32 ms
52,224 KB
testcase_12 AC 178 ms
88,816 KB
testcase_13 AC 158 ms
87,840 KB
testcase_14 AC 175 ms
89,232 KB
testcase_15 AC 176 ms
88,868 KB
testcase_16 AC 33 ms
52,736 KB
testcase_17 AC 168 ms
89,052 KB
testcase_18 AC 170 ms
89,028 KB
testcase_19 AC 180 ms
88,924 KB
testcase_20 AC 175 ms
88,920 KB
testcase_21 AC 168 ms
89,048 KB
testcase_22 AC 38 ms
52,736 KB
testcase_23 AC 176 ms
89,080 KB
testcase_24 AC 169 ms
89,128 KB
testcase_25 AC 33 ms
52,224 KB
testcase_26 AC 173 ms
89,128 KB
testcase_27 AC 167 ms
88,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
point=[0]*N
dat=[]
for _ in range(N-1):
    u,v=map(int,input().split())
    dat.append((u,v))
    point[u-1]+=1
    point[v-1]+=1
ans=0
ans2=0
for u,v in dat:
    ans+=1
    ans+=(point[u-1]-1)*(point[v-1]-1)
    ans2+=point[u-1]+point[v-1]-2
print(ans+ans2//2)
0