結果

問題 No.2751 429-like Number
ユーザー tentententen
提出日時 2024-05-13 15:19:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,994 ms / 4,000 ms
コード長 2,507 bytes
コンパイル時間 2,674 ms
コンパイル使用メモリ 87,620 KB
実行使用メモリ 67,284 KB
最終ジャッジ日時 2024-05-13 15:20:13
合計ジャッジ時間 22,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
58,248 KB
testcase_01 AC 106 ms
58,464 KB
testcase_02 AC 108 ms
58,376 KB
testcase_03 AC 109 ms
58,472 KB
testcase_04 AC 112 ms
58,420 KB
testcase_05 AC 113 ms
58,352 KB
testcase_06 AC 128 ms
58,480 KB
testcase_07 AC 204 ms
62,760 KB
testcase_08 AC 214 ms
62,684 KB
testcase_09 AC 209 ms
63,700 KB
testcase_10 AC 559 ms
64,972 KB
testcase_11 AC 1,994 ms
65,304 KB
testcase_12 AC 1,328 ms
65,524 KB
testcase_13 AC 302 ms
64,936 KB
testcase_14 AC 363 ms
65,220 KB
testcase_15 AC 192 ms
63,532 KB
testcase_16 AC 656 ms
65,368 KB
testcase_17 AC 761 ms
65,472 KB
testcase_18 AC 1,009 ms
65,332 KB
testcase_19 AC 998 ms
65,556 KB
testcase_20 AC 1,212 ms
65,380 KB
testcase_21 AC 949 ms
65,496 KB
testcase_22 AC 973 ms
65,344 KB
testcase_23 AC 1,030 ms
65,304 KB
testcase_24 AC 1,021 ms
65,356 KB
testcase_25 AC 1,026 ms
65,356 KB
testcase_26 AC 998 ms
67,284 KB
testcase_27 AC 1,213 ms
65,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static List<Integer> primes = new ArrayList<>();
    static List<Long> squares = new ArrayList<>();
    static List<Long> cubes = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        boolean[] isNotPrimes = new boolean[100000];
        for (int i = 2; i < isNotPrimes.length; i++) {
            if (!isNotPrimes[i]) {
                primes.add(i);
                squares.add((long)i * i);
                cubes.add((long)i * i * i);
            }
        }
        int q = sc.nextInt();
        String result = IntStream.range(0, q).mapToObj(i -> is429(sc.nextLong()) ? "Yes" : "No")
            .collect(Collectors.joining("\n"));
        System.out.println(result);
    }
    
    static boolean is429(long x) {
        for (int i = 0; i < primes.size() && cubes.get(i) <= x; i++) {
            if (x % primes.get(i) == 0 ) {
                return isDouble(i, x / primes.get(i));
            }
        }
        return false;
    }
    
    static boolean isDouble(int idx, long x) {
        for (int i = idx; i < primes.size() && squares.get(i) <= x; i++) {
            if (x % primes.get(i) == 0) {
                return isPrime(i, x / primes.get(i));
            }
        }
        return false;
    }
    
    static boolean isPrime(int idx, long x) {
        for (int i = idx; i < primes.size() && squares.get(i) <= x; i++) {
            if (x % primes.get(i) == 0) {
                return false;
            }
        }
        return true;
    }
}
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