結果

問題 No.458 異なる素数の和
ユーザー KeiGKeiG
提出日時 2019-01-06 11:24:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 1,860 bytes
コンパイル時間 2,466 ms
コンパイル使用メモリ 80,140 KB
実行使用メモリ 51,560 KB
最終ジャッジ日時 2024-05-03 03:09:34
合計ジャッジ時間 5,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,244 KB
testcase_01 AC 95 ms
51,244 KB
testcase_02 AC 110 ms
51,420 KB
testcase_03 AC 70 ms
51,392 KB
testcase_04 AC 73 ms
51,420 KB
testcase_05 AC 157 ms
51,392 KB
testcase_06 AC 104 ms
51,480 KB
testcase_07 AC 49 ms
49,956 KB
testcase_08 AC 156 ms
51,464 KB
testcase_09 AC 73 ms
51,360 KB
testcase_10 AC 46 ms
50,248 KB
testcase_11 AC 172 ms
51,360 KB
testcase_12 AC 47 ms
50,208 KB
testcase_13 AC 46 ms
50,364 KB
testcase_14 AC 46 ms
50,164 KB
testcase_15 AC 49 ms
50,192 KB
testcase_16 AC 71 ms
51,416 KB
testcase_17 AC 47 ms
50,096 KB
testcase_18 AC 48 ms
50,372 KB
testcase_19 AC 45 ms
49,876 KB
testcase_20 AC 48 ms
50,340 KB
testcase_21 AC 46 ms
50,040 KB
testcase_22 AC 46 ms
50,004 KB
testcase_23 AC 49 ms
50,232 KB
testcase_24 AC 46 ms
50,116 KB
testcase_25 AC 45 ms
50,056 KB
testcase_26 AC 46 ms
50,328 KB
testcase_27 AC 104 ms
51,560 KB
testcase_28 AC 174 ms
51,436 KB
testcase_29 AC 64 ms
50,612 KB
testcase_30 AC 83 ms
51,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.InputStreamReader;
import java.io.BufferedReader;
import java.util.Arrays;
import java.util.List;
import java.util.ArrayList;
import java.util.ArrayDeque;
import java.util.Deque;
import java.util.Collections;
import java.awt.Point;


public class Main {
    public static void main(String[] args) throws Exception {
        
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        List<Integer> primeNums = new ArrayList();
        
        boolean isPrime = true;
        for (int i = 2; i <= n; i++) {
            isPrime = true;
            for (int j = 2; j <= Math.sqrt(i); j++) {
                if (i % j == 0) {
                    isPrime = false;
                }
            }
            if (isPrime) {
                //System.out.println(i);
                primeNums.add(i);
            }
        }
        
        //合計がiとなるときの和の回数の最大値
        int[] dp = new int[n+1];
        dp[0] = 0;
        
        for (int i = 1; i <= n; i++) {
            dp[i] = -1;
        }
        
        for (int p : primeNums) {
            for (int i = n; i >= 0; i--) {
                if (i+p <= n && dp[i] != -1) {
                    dp[i+p] = Math.max(dp[i] + 1, dp[i+p]);
                    //System.out.println("dp " + i + " =" + dp[i]);
                }
            }
        }
        
        
        System.out.println(dp[n]);
    }
}

class Box {
    int w;
    int h;
    public Box(int w, int h) {
        this.w = w;
        this.h = h;
    }
}

class BoxComparator1 implements Comparator<Box>{
	public int compare(Box b1, Box b2) {
		return b1.w - b2.w;
	}
}

class BoxComparator2 implements Comparator<Box> {
    public int compare(Box b1, Box b2) {
        return b1.h - b2.h;
    }
}
0