Codeforces Beta Round #9 (Div. 2 Only) A. Die Roll 水题

A. Die Roll

题目连接:

http://www.codeforces.com/contest/9/problem/A

Description

Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpredictable place.

But to their great regret, the leave turned to be very short, so it will be enough to visit one of the three above named places. That’s why Yakko, as the cleverest, came up with a truly genius idea: let each of the three roll an ordinary six-sided die, and the one with the highest amount of points will be the winner, and will take the other two to the place of his/her dreams.

Yakko thrown a die and got Y points, Wakko — W points. It was Dot’s turn. But she didn’t hurry. Dot wanted to know for sure what were her chances to visit Transylvania.

It is known that Yakko and Wakko are true gentlemen, that’s why if they have the same amount of points with Dot, they will let Dot win.

Input

The only line of the input file contains two natural numbers Y and W — the results of Yakko’s and Wakko’s die rolls.

Output

Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».

Sample Input

4 2

Sample Output

1/2

Hint

题意

有三个人在玩掷骰子,然后第一个人扔了个A,第二个人扔了个B

现在问你有多大的概率能够赢过这两个人,平局也算自己赢。

题解:

水题啦

要求化简成为最简单的分数,这个用gcd就好了

代码

#include<bits/stdc++.h>
using namespace std;
int gcd(int a,int b)
{
    if(b==0)return a;
    return gcd(b,a%b);
}
int main()
{
    int a,b;
    scanf("%d%d",&a,&b);
    a=max(a,b);
    printf("%d/%d",(7-a)/gcd(7-a,6),6/gcd(7-a,6));
}
    原文作者:qscqesze
    原文地址: https://www.cnblogs.com/qscqesze/p/5413072.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞