#include using namespace std; double dp[1000001][1<<6]; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; dp[0][0] = 1; for(int i=0;i