首页 > 其他 > 详细

【HackerRank】 Filling Jars

时间:2014-07-30 11:53:43      阅读:278      评论:0      收藏:0      [点我收藏+]

Animesh has N empty candy jars, numbered from 1 to N, with infinite capacity. He performs M operations. Each operation is described by 3 integers a, b and k. Here, a and b are index of the jars, and k is the number of candies to be added inside each jar whose index lies between a and b (both inclusive). Can you tell the average number of candies after M operations?

Input Format
The first line contains two integers N and M separated by a single space.
M lines follow. Each of the M lines contain three integers a, b and k separated by single space.

Output Format
A single line containing the average number of candies across N jars, rounded down to the nearest integer.

Note
Rounded down means finding the greatest integer which is less than or equal to given number. Eg, 13.65 and 13.23 is rounded down to 13, while 12.98 is rounded down to 12.

Constraints
3 <= N <= 107
1 <= M <= 105
1 <= a <= b <= N

 1 import java.io.*;
 2 import java.util.*;
 3 
 4 
 5 public class Solution {
 6 
 7     public static void main(String[] args) {
 8         Scanner in = new Scanner(System.in);
 9         int n = in.nextInt();
10         int m = in.nextInt();
11         Long result = new Long(0);
12         for(int i = 0; i < m; i++){
13             Long a = in.nextLong();
14             Long b = in.nextLong();
15             Long k = in.nextLong();
16             result += k*(b-a+1);
17         }
18         System.out.println(result/n);
19     }
20     
21     
22     
23 }

 


0 <= k <= 106


 

题解:

 

【HackerRank】 Filling Jars,布布扣,bubuko.com

【HackerRank】 Filling Jars

原文:http://www.cnblogs.com/sunshineatnoon/p/3877345.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!