码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4523

时间:2015-03-29 22:07:40      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

很简单了,

当m>=3&&m<=n+p时是yes

 

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner input=new Scanner(System.in);
		while(input.hasNext()){
			BigInteger n=input.nextBigInteger();
			BigInteger m=input.nextBigInteger();
			BigInteger p=input.nextBigInteger();
			if(m.compareTo(BigInteger.valueOf(3))>-1&&m.compareTo(n.add(p))<1){
				System.out.println("YES");
			}
			else
				System.out.println("NO");
		}
	}
}

  

HDU 4523

标签:

原文地址:http://www.cnblogs.com/jie-dcai/p/4376493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!