import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); String[] genes = new String[n]; for(int genes_i=0; genes_i < n; genes_i++){ genes[genes_i] = in.next(); } int[] health = new int[n]; for(int health_i=0; health_i < n; health_i++){ health[health_i] = in.nextInt(); } int s = in.nextInt(); for(int a0 = 0; a0 < s; a0++){ int first = in.nextInt(); int last = in.nextInt(); String d = in.next(); // your code goes here int total=0; for(int i=first;i<=last;i++){ int count=0; for(int j=0;j 0){ if(d.charAt(h)==genes[i].charAt(l)){ h++; l++; } else{ flag=1; break; } len--; } if(flag==0){ count++; } } } if(count!=0){ total += count*health[i]; } } System.out.print(total+" "); } } }