結果

問題 No.2638 Initial fare
ユーザー shobonvipshobonvip
提出日時 2024-02-11 18:52:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-09-28 17:40:58
合計ジャッジ時間 16,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 814 ms
27,008 KB
testcase_05 AC 811 ms
27,776 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 830 ms
27,648 KB
testcase_08 AC 735 ms
26,368 KB
testcase_09 AC 807 ms
27,776 KB
testcase_10 AC 816 ms
27,904 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 827 ms
27,392 KB
testcase_13 AC 716 ms
25,728 KB
testcase_14 AC 810 ms
27,776 KB
testcase_15 AC 815 ms
27,904 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 771 ms
27,136 KB
testcase_18 AC 777 ms
26,752 KB
testcase_19 AC 775 ms
27,264 KB
testcase_20 AC 798 ms
27,136 KB
testcase_21 AC 785 ms
27,264 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 798 ms
27,264 KB
testcase_24 AC 813 ms
27,904 KB
testcase_25 AC 26 ms
10,752 KB
testcase_26 AC 793 ms
27,904 KB
testcase_27 AC 780 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
u = [0] * (n-1)
v = [0] * (n-1)
deg = [0] * n
for i in range(n-1):
	u[i], v[i] = map(int,input().split())
	u[i] -= 1
	v[i] -= 1
	deg[u[i]] += 1
	deg[v[i]] += 1

ans = n-1
for i in range(n-1):
	ans += (deg[u[i]] - 1) * (deg[v[i]] - 1)
for i in range(n):
	ans += deg[i] * (deg[i] - 1) // 2

print(ans) 
0