結果

問題 No.2638 Initial fare
ユーザー ramdosramdos
提出日時 2024-02-11 17:32:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 98,720 KB
最終ジャッジ日時 2024-09-28 17:37:48
合計ジャッジ時間 6,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,804 KB
testcase_01 AC 33 ms
52,384 KB
testcase_02 AC 33 ms
52,004 KB
testcase_03 AC 35 ms
53,340 KB
testcase_04 AC 215 ms
96,492 KB
testcase_05 AC 227 ms
98,168 KB
testcase_06 AC 35 ms
52,476 KB
testcase_07 AC 227 ms
98,552 KB
testcase_08 AC 208 ms
96,420 KB
testcase_09 AC 226 ms
98,144 KB
testcase_10 AC 218 ms
98,304 KB
testcase_11 AC 34 ms
53,112 KB
testcase_12 AC 225 ms
98,148 KB
testcase_13 AC 193 ms
95,016 KB
testcase_14 AC 216 ms
98,216 KB
testcase_15 AC 224 ms
98,320 KB
testcase_16 AC 36 ms
54,932 KB
testcase_17 AC 217 ms
97,088 KB
testcase_18 AC 213 ms
96,780 KB
testcase_19 AC 223 ms
97,004 KB
testcase_20 AC 227 ms
96,976 KB
testcase_21 AC 216 ms
96,572 KB
testcase_22 AC 34 ms
52,880 KB
testcase_23 AC 213 ms
97,960 KB
testcase_24 AC 234 ms
98,264 KB
testcase_25 AC 35 ms
52,816 KB
testcase_26 AC 221 ms
98,720 KB
testcase_27 AC 226 ms
98,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
e=[list(map(lambda x:int(x)-1,input().split()))for i in range(N-1)]
v,a=[0]*N,N-1
for i in range(N-1):
 v[e[i][0]]+=1
 v[e[i][1]]+=1
for i in range(N):
 a+=v[i]*(v[i]-1)//2
for i in range(N-1):
 a+=~-v[e[i][0]]*~-v[e[i][1]]
print(a)
0