#include<bits/stdc++.h> using namespace std; double p[200005]; int main(){ ios::sync_with_stdio(false); cin.tie(0);cout.tie(0); int t; cin>>t; while(t--){ memset(p,0,sizeof(p)); int n,x,y; cin>>n>>x>>y; for(int i=1;i<=n;i++){ cin>>p[i]; } if...