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

NYOJ题目596谁是最好的Coder

时间:2016-08-27 15:35:12      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

--------------------------------------------

AC代码:

 1 import java.util.Scanner;
 2 
 3 public class Main {
 4 
 5     public static void main(String[] args) {
 6         
 7         Scanner sc=new Scanner(System.in);
 8         
 9         while(true){
10             
11             int n=sc.nextInt();
12             if(n==0) return ;
13             int ans=sc.nextInt()+sc.nextInt();
14             
15             while(--n>0){
16                 int t=sc.nextInt()+sc.nextInt();
17                 ans=Math.max(t,ans);
18             }
19             
20             System.out.println(ans);
21         }
22         
23     }
24     
25 }

 题目来源: http://acm.nyist.net/JudgeOnline/problem.php?pid=596

NYOJ题目596谁是最好的Coder

标签:

原文地址:http://www.cnblogs.com/cc11001100/p/5813006.html

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