import java.io.*; import java.util.*; public class Main { static ArrayList> graph = new ArrayList<>(); static long[] weights; static int[][] parents; static int[] depths; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); for (int i = 0; i < n; i++) { graph.add(new HashMap<>()); } for (int i = 0; i < n - 1; i ++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); graph.get(a).put(b, c); graph.get(b).put(a, c); } weights = new long[n]; depths = new int[n]; parents = new int[17][n]; setDepth(0, 0, 0, 0); for (int i = 1; i < 17; i++) { for (int j = 0; j < n; j++) { parents[i][j] = parents[i - 1][parents[i - 1][j]]; } } StringBuilder sb = new StringBuilder(); int q = sc.nextInt(); while (q-- > 0) { int[] targets = new int[]{sc.nextInt(), sc.nextInt(), sc.nextInt()}; long sum = 0; for (int i = 0; i < 3; i++) { sum += getWeight(targets[i], targets[(i + 1) % 3]); } sb.append(sum / 2).append("\n"); } System.out.print(sb); } static int getLCA(int a, int b) { if (depths[a] < depths[b]) { return getLCA(b, a); } for (int i = 16; i >= 0; i--) { if (depths[a] - depths[b] >= (1 << i)) { a = parents[i][a]; } } if (a == b) { return a; } for (int i = 16; i >= 0; i--) { if (parents[i][a] != parents[i][b]) { a = parents[i][a]; b = parents[i][b]; } } return parents[0][a]; } static long getWeight(int a, int b) { int lca = getLCA(a, b); return weights[a] + weights[b] - weights[lca] * 2; } static void setDepth(int idx, int p, long w, int d) { depths[idx] = d; weights[idx] = w; parents[0][idx] = p; for (int x : graph.get(idx).keySet()) { if (x == p) { continue; } setDepth(x, idx, w + graph.get(idx).get(x), d + 1); } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }