結果
問題 | No.2638 Initial fare |
ユーザー | satama123 |
提出日時 | 2024-02-19 21:31:11 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 500 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 110,308 KB |
最終ジャッジ日時 | 2024-09-29 01:26:44 |
合計ジャッジ時間 | 5,373 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
60,752 KB |
testcase_01 | AC | 44 ms
55,672 KB |
testcase_02 | AC | 42 ms
54,168 KB |
testcase_03 | AC | 43 ms
55,720 KB |
testcase_04 | AC | 450 ms
100,304 KB |
testcase_05 | AC | 476 ms
101,760 KB |
testcase_06 | AC | 42 ms
54,548 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
from collections import deque N = int(input()) edge = [[] for _ in range(N)] for _ in range(N-1): u, v = map(int, input().split()) u -= 1 v -= 1 edge[u].append(v) edge[v].append(u) ans = 0 nxt = deque() used = [False] * N used[0] = True nxt.append(0) while nxt: pos = nxt.pop() for to in edge[pos]: ans += 1 for nt in edge[to]: if nt != pos : ans += len(edge[nt]) if not used[to] : nxt.append(to); used[to] = True print(ans // 2)