import java.io.*; import java.util.*; public class Main { static ArrayList> graph = new ArrayList<>(); static int[][] parents; static int[] depths; static long[] weights; 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); } parents = new int[17][n]; depths = new int[n]; weights = new long[n]; getWeight(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]]; } } int q = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < q; i++) { sb.append(getAns(sc.nextInt(), sc.nextInt(), sc.nextInt())).append("\n"); } System.out.print(sb); } static long getEach(int a, int b) { return weights[a] + weights[b] - weights[getLCA(a, b)] * 2; } static int getLCA(int a, int b) { if (depths[a] < depths[b]) { return getLCA(b, a); } for (int i = 16; i >= 0 && depths[a] > depths[b]; 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 getAns(int a, int b, int c) { return (getEach(a, b) + getEach(b, c) + getEach(c, a)) / 2; } static void getWeight(int idx, int p, int d, long w) { parents[0][idx] = p; depths[idx] = d; weights[idx] = w; for (int x : graph.get(idx).keySet()) { if (x == p) { continue; } getWeight(x, idx, d + 1, w + graph.get(idx).get(x)); } } } 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 nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }