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

URAL 1025 Democracy in Danger

时间:2014-08-26 01:48:05      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   for   ar   div   log   sp   

排个序

 1 import java.util.Arrays;
 2 import java.util.Scanner;
 3 
 4 public class P1025
 5 {
 6     public static void main(String args[])
 7     {
 8         try (Scanner cin = new Scanner(System.in))
 9         {
10             while (cin.hasNext())
11             {
12                 int n = cin.nextInt();
13                 int a[] = new int[n];
14                 for (int i = 0; i < n; i++)
15                     a[i] = cin.nextInt();
16                 Arrays.sort(a);
17                 int result = 0;
18                 for (int i = 0; i <= n / 2; i++)
19                     result += a[i] / 2 + 1;
20                 System.out.println(result);
21             }
22         }
23     }
24 }

 

URAL 1025 Democracy in Danger

标签:style   blog   color   java   for   ar   div   log   sp   

原文地址:http://www.cnblogs.com/gwhahaha/p/3936287.html

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