poj 3716 Panda's Birthday Present

it2024-04-18  8

Panda's Birthday Present Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 1200 Accepted: 796

Description

On Panda's Birthday party, he received a strange present from Jason. The present is a black box with 4 dices in it which is used to play a game. The dice in the box is unusual. Instead of the digits, only red or blue is painted on each side of the dice. Before the first round of the game, the box can repaint every side of every dice red or blue with equal probability. Then for each round of the game, the box will roll the 4 dices and tell the player the number of red side facing up, which is the point the player get. Now, Panda has play it for two rounds and he tell you the point he has got for each round. Can you tell him the expected point he can get for next round.

Input

The first line of the input is number of test case. Each test case contains two integers, pand q, which are the points Panda has got for the first two rounds.(0≤ p, q≤4)

Output

For each test case, output the expected point panda can get for the third round. Round the answer to the third digit after the decimal point.

Sample Input

2 2 2 4 4

Sample Output

2.000 2.571 #include <iostream> using namespace std; int main() { int nCase; int p, q; double result; scanf("%d", &nCase); while(nCase--) { scanf("%d %d", &p, &q); result= (p + q + 10) / 7.0; printf("%.3lf\n", result); } return 0; }

转载于:https://www.cnblogs.com/w0w0/archive/2011/11/23/2259871.html

相关资源:数据结构—成绩单生成器
最新回复(0)