結果

問題 No.2638 Initial fare
ユーザー hato336hato336
提出日時 2024-02-19 21:58:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 131,848 KB
最終ジャッジ日時 2024-09-29 01:57:18
合計ジャッジ時間 11,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
85,736 KB
testcase_01 AC 118 ms
85,700 KB
testcase_02 AC 117 ms
85,736 KB
testcase_03 AC 120 ms
85,812 KB
testcase_04 AC 422 ms
124,724 KB
testcase_05 AC 466 ms
125,400 KB
testcase_06 AC 120 ms
85,784 KB
testcase_07 AC 419 ms
127,652 KB
testcase_08 AC 406 ms
125,136 KB
testcase_09 AC 436 ms
131,628 KB
testcase_10 AC 428 ms
131,820 KB
testcase_11 AC 127 ms
85,784 KB
testcase_12 AC 474 ms
127,408 KB
testcase_13 AC 395 ms
125,260 KB
testcase_14 AC 433 ms
130,208 KB
testcase_15 AC 424 ms
131,848 KB
testcase_16 AC 140 ms
89,092 KB
testcase_17 AC 470 ms
127,644 KB
testcase_18 AC 414 ms
127,540 KB
testcase_19 AC 516 ms
127,228 KB
testcase_20 AC 510 ms
126,324 KB
testcase_21 AC 513 ms
126,024 KB
testcase_22 AC 132 ms
85,796 KB
testcase_23 AC 505 ms
124,000 KB
testcase_24 AC 526 ms
124,792 KB
testcase_25 AC 124 ms
85,880 KB
testcase_26 AC 458 ms
124,576 KB
testcase_27 AC 451 ms
124,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
n = int(input())
edge = [[] for i in range(n)]
nyuji = [0 for i in range(n)]
e = []
for i in range(n-1):
    u,v = map(int,input().split())
    u-=1
    v-=1
    edge[u].append(v)
    edge[v].append(u)
    nyuji[u] += 1
    nyuji[v] += 1
    e.append((u,v))
ans = 0
for u,v in e:
    ans += (nyuji[u]-1) * (nyuji[v] - 1 )
    ans += 1
for i in range(n):
    ans += nyuji[i]*(nyuji[i]-1)//2
print(ans)
0