結果

問題 No.458 異なる素数の和
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 19:11:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 870 bytes
コンパイル時間 2,815 ms
コンパイル使用メモリ 78,716 KB
実行使用メモリ 56,248 KB
最終ジャッジ日時 2024-07-07 03:05:27
合計ジャッジ時間 7,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,324 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 143 ms
41,192 KB
testcase_04 AC 143 ms
42,204 KB
testcase_05 AC 148 ms
42,476 KB
testcase_06 WA -
testcase_07 AC 114 ms
41,296 KB
testcase_08 AC 151 ms
42,480 KB
testcase_09 AC 122 ms
41,612 KB
testcase_10 AC 110 ms
41,092 KB
testcase_11 AC 160 ms
42,500 KB
testcase_12 AC 113 ms
39,936 KB
testcase_13 AC 101 ms
41,440 KB
testcase_14 AC 110 ms
41,276 KB
testcase_15 AC 118 ms
41,260 KB
testcase_16 AC 124 ms
40,816 KB
testcase_17 AC 103 ms
41,024 KB
testcase_18 AC 117 ms
41,184 KB
testcase_19 AC 113 ms
41,016 KB
testcase_20 AC 104 ms
41,484 KB
testcase_21 AC 112 ms
41,028 KB
testcase_22 AC 111 ms
41,244 KB
testcase_23 AC 112 ms
41,268 KB
testcase_24 AC 99 ms
41,516 KB
testcase_25 AC 108 ms
40,256 KB
testcase_26 AC 107 ms
41,256 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 118 ms
40,208 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class DifferentSosu {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();
		ArrayList<Integer> p = new ArrayList<>();
		p.add(2);
		for(int i = 3;i <= N;i++){
			int a = 1;
			for(int j = 0;j < p.size();j++){
				if(i % p.get(j) == 0){
					a = 0;
					break;
				}
			}
			if(a == 1){
				p.add(i);
			}
		}
		int[][] root = new int[N+1][2];
		root[1][0] = -1;
		for(int i = 2;i <= N;i++){
			for(int q:p){
				if(i-q < 0){
					root[i][0] = -1;
					break;
				}else if(root[i-q][0] != -1 && root[i-q][1] < q){
					root[i][0] += root[i-q][0] + 1;
					root[i][1] = q;
					break;
				}
			}
			//System.out.println(root[i][0] + "  " + root[i][1]);
		}
		if(root[N][0] == 0){
			root[N][0] = -1;
		}
		System.out.println(root[N][0]);

	}

}
0