結果

問題 No.2750 Number of Prime Factors
ユーザー tentententen
提出日時 2024-05-13 14:11:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,640 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 78,816 KB
実行使用メモリ 50,484 KB
最終ジャッジ日時 2024-05-13 14:11:17
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,368 KB
testcase_01 AC 49 ms
50,476 KB
testcase_02 AC 48 ms
50,172 KB
testcase_03 AC 49 ms
50,404 KB
testcase_04 AC 50 ms
50,456 KB
testcase_05 AC 49 ms
50,460 KB
testcase_06 AC 47 ms
50,092 KB
testcase_07 AC 46 ms
50,092 KB
testcase_08 AC 68 ms
49,996 KB
testcase_09 AC 45 ms
50,144 KB
testcase_10 AC 47 ms
50,316 KB
testcase_11 AC 46 ms
50,376 KB
testcase_12 AC 48 ms
50,412 KB
testcase_13 AC 47 ms
50,484 KB
testcase_14 AC 46 ms
50,160 KB
testcase_15 AC 45 ms
50,320 KB
testcase_16 AC 48 ms
50,108 KB
testcase_17 AC 46 ms
50,012 KB
testcase_18 AC 46 ms
50,136 KB
testcase_19 AC 45 ms
50,428 KB
testcase_20 AC 47 ms
50,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        boolean[] isNotPrimes = new boolean[50];
        long current = 1;
        int ans = 0;
        for (int i = 2; i < 50; i++) {
            if (!isNotPrimes[i]) {
                if (n / i >= current && current * i <= n) {
                    ans++;
                    current *= i;
                } else {
                    break;
                }
                for (int j = 2; j * i < 50; j++) {
                    isNotPrimes[j * i] = true;
                }
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0