#include using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; template using V=vector; template using VV=V>; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); V prime(100001,1); prime[0]=0,prime[1]=0; for(int i=2;i<=100000;i++){ if(prime[i]){ for(int j=i*2;j<=100000;j+=i) prime[j]=0; } } V cnt(100001); for(int i=1;i<=100000;i++) cnt[i]=cnt[i-1]+prime[i]; int t; cin>>t; while(t--){ int n; double p,q; cin>>n>>p>>q; double ans=(double)cnt[n]*p/(cnt[n]*p+(n-cnt[n])*(100-q)); printf("%.10f\n",ans); } return 0; }