結果

問題 No.2638 Initial fare
ユーザー KoiKoi
提出日時 2024-02-19 21:37:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 107,112 KB
最終ジャッジ日時 2024-09-29 01:33:00
合計ジャッジ時間 8,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,048 KB
testcase_01 AC 32 ms
52,612 KB
testcase_02 AC 33 ms
52,652 KB
testcase_03 AC 33 ms
52,584 KB
testcase_04 AC 337 ms
99,628 KB
testcase_05 AC 364 ms
100,492 KB
testcase_06 AC 33 ms
53,164 KB
testcase_07 AC 329 ms
102,220 KB
testcase_08 AC 261 ms
104,660 KB
testcase_09 AC 302 ms
105,124 KB
testcase_10 AC 296 ms
107,112 KB
testcase_11 AC 33 ms
53,976 KB
testcase_12 AC 354 ms
102,860 KB
testcase_13 AC 261 ms
102,108 KB
testcase_14 AC 321 ms
106,352 KB
testcase_15 AC 296 ms
105,828 KB
testcase_16 AC 35 ms
53,484 KB
testcase_17 AC 344 ms
103,008 KB
testcase_18 AC 274 ms
103,268 KB
testcase_19 AC 354 ms
102,436 KB
testcase_20 AC 357 ms
101,988 KB
testcase_21 AC 363 ms
101,428 KB
testcase_22 AC 35 ms
53,624 KB
testcase_23 AC 380 ms
99,152 KB
testcase_24 AC 364 ms
100,020 KB
testcase_25 AC 34 ms
52,468 KB
testcase_26 AC 392 ms
99,828 KB
testcase_27 AC 381 ms
99,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
G=[[] for _ in range(N)]
for _ in range(N-1):
    u,v=map(int,input().split())
    G[u-1].append(v-1)
    G[v-1].append(u-1)
Two=[0]*N
ans=0
for i in range(N):
    ans+=len(G[i])
    for q in G[i]:
        Two[i]+=(len(G[q])-1)
for i in range(N):
    ans+=Two[i]
    for q in G[i]:
        ans+=Two[q]
        ans-=(len(G[i])-1)

print(ans//2)
0