首页 > 代码库 > nyoj 1077 小博弈 【另类巴什博奕】
nyoj 1077 小博弈 【另类巴什博奕】
分析:分析当整除(a+b)的时候肯定是后者胜利,如果余数不等于0的时候,如果余数大于b肯定是前者胜利,否则后者胜利。
代码:
import java.math.*; import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner cin = new Scanner(System.in); BigInteger n, a, b; while(cin.hasNext()){ n = cin.nextBigInteger(); a = cin.nextBigInteger(); b = cin.nextBigInteger(); a = a.add(b); n = n.mod(a); //System.out.println(n); if(n.compareTo(BigInteger.ZERO) == 0) System.out.println("Yougth"); else if(n.compareTo(b) > 0){ System.out.println("Yougth"); } else System.out.println("Hrdv"); } } }
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=1077
nyoj 1077 小博弈 【另类巴什博奕】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。