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

Codility---CountFactors

时间:2017-06-13 23:49:24      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:data   line   out   targe   odi   should   complex   sed   purpose   

Task description

A positive integer D is a factor of a positive integer N if there exists an integer M such that N = D * M.

For example, 6 is a factor of 24, because M = 4 satisfies the above condition (24 = 6 * 4).

Write a function:

class Solution { public int solution(int N); }

that, given a positive integer N, returns the number of its factors.

For example, given N = 24, the function should return 8, because 24 has 8 factors, namely 1, 2, 3, 4, 6, 8, 12, 24. There are no other factors of 24.

Assume that:

  • N is an integer within the range [1..2,147,483,647].

Complexity:

  • expected worst-case time complexity is O(sqrt(N));
  • expected worst-case space complexity is O(1).

 

Solution
 
Programming language used: Java
Code: 15:02:17 UTC, java, final, score:  100
// you can also use imports, for example:
// import java.util.*;

// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");

class Solution {
    public int solution(int N) {
        // write your code in Java SE 8
        int count = 0, i=1;
        double max = Math.sqrt(N);
        for(; i < max; i++) {
            if(N % i ==0) {
                count += 2;
            }
        }
        if(i*i == N){
            count++;
        }
        return count;
    }
}


https://codility.com/demo/results/training5YTT4B-5NP/

 

Codility---CountFactors

标签:data   line   out   targe   odi   should   complex   sed   purpose   

原文地址:http://www.cnblogs.com/samo/p/7004014.html

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