#include using namespace std; #ifdef LOCAL #define eprintf(...) fprintf(stderr, __VA_ARGS__) #else #define eprintf(...) 42 #endif #define rep(i,n) for(int i=0;i<(int)(n);i++) #define repi(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define all(x) (x).begin(),(x).end() #define foreach(u,v) for(auto (u) : (v)) #define pb push_back #define mp make_pair #define mt make_tuple typedef long long ll; typedef pair pii; typedef vector vi; typedef vector vvi; typedef pair pll; typedef vector vl; const int inf = 1e9; const ll linf = 1LL<<60; const ll mod = 1e9 + 7; const double eps = 1e-9; /* */ int main() { string s[5]; int c[5]; rep(i, 5){ cin >> s[i] >> c[i]; } int n[3]; map cnt[3]; ll p = 1; rep(i, 3){ cin >> n[i]; p *= n[i]; rep(j, n[i]){ string t; cin >> t; cnt[i][t]++; } } double ans = 0; vl u(5); rep(i, 5){ ll t = 5; rep(j, 3){ t *= cnt[j][s[i]]; } // printf("%d: %.4f\n", i, (double)t/p*c[i]); ans += (double)t/p*c[i]; u[i] = t; } printf("%.9f\n", ans); rep(i, 5){ cout << u[i] << endl; } return 0; }