博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 吃糖果
阅读量:5344 次
发布时间:2019-06-15

本文共 718 字,大约阅读时间需要 2 分钟。

水题

代码:

import java.util.*;import java.math.BigInteger;import java.math.BigDecimal;;interface forall {	static final int N = 1000005;}public class Main implements forall {	public static void main(String[] args) {		Scanner in = new Scanner(System.in);		// BigInteger [] a = new BigInteger[122];		int T;		int n;		long[] a = new long[N];		T = in.nextInt();		while ((T--) > 0) {			n = in.nextInt();			long sum = 0;			long max = 0;			for (int i = 0; i < n; ++i) {				a[i] = in.nextLong();				sum += a[i];				max = Math.max(max, a[i]);			}			if ((max - 1) <= (sum - max)) {				System.out.println("Yes");			} else {				System.out.println("No");			}		}	}}

  

转载于:https://www.cnblogs.com/liulangye/archive/2013/03/12/2956420.html

你可能感兴趣的文章
函数--生成器、生成器函数、各类推导式、生成器表达式
查看>>
responsive-navigator
查看>>
JavaScript:数组forEach和map的兼容处理
查看>>
牛客网——复杂字符串排序
查看>>
C# WinForm 技巧:控件截图
查看>>
Ubuntu安装node.js
查看>>
maven打包时报错:-source 1.5 中不支持 diamond 运算符
查看>>
orcle form 传数据乱码
查看>>
react-router@4.0 使用和源码解析
查看>>
ES6第一天
查看>>
分享下我的家乡语言——湘潭话
查看>>
mysql主从
查看>>
运行所选代码生成器时出错:“预期具有协定名称 "NuGet.VisualStudio.IVsPackageInstallerServices" 的1导出 ——VS2015错误记录...
查看>>
关闭其它进程占用的文件句柄
查看>>
hadoop 2.2搭建常见错误
查看>>
nginx日志配置
查看>>
72_leetcode_Construct Binary Tree from Preorder and Inorder Traversal
查看>>
导出数据库表到指定的文件中的相应字段
查看>>
2018-07-18博客
查看>>
Groovy预览--lists
查看>>