結果

問題 No.2638 Initial fare
ユーザー ramdosramdos
提出日時 2024-02-11 11:51:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,092 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,584 KB
最終ジャッジ日時 2024-11-07 15:13:00
合計ジャッジ時間 22,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 1,008 ms
49,536 KB
testcase_05 AC 1,071 ms
51,584 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 1,023 ms
50,688 KB
testcase_08 AC 955 ms
48,128 KB
testcase_09 AC 1,044 ms
51,200 KB
testcase_10 AC 1,044 ms
51,584 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 1,041 ms
50,304 KB
testcase_13 AC 908 ms
46,208 KB
testcase_14 AC 1,035 ms
51,072 KB
testcase_15 AC 1,092 ms
51,584 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 1,001 ms
49,408 KB
testcase_18 AC 979 ms
49,024 KB
testcase_19 AC 1,015 ms
49,792 KB
testcase_20 AC 1,032 ms
49,664 KB
testcase_21 AC 998 ms
49,664 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 1,038 ms
50,304 KB
testcase_24 AC 1,023 ms
51,456 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 1,061 ms
51,584 KB
testcase_27 AC 1,063 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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