結果

問題 No.458 異なる素数の和
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 21:04:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 894 bytes
コンパイル時間 3,747 ms
コンパイル使用メモリ 78,196 KB
実行使用メモリ 42,112 KB
最終ジャッジ日時 2024-07-07 03:12:55
合計ジャッジ時間 8,987 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,384 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 206 ms
41,604 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 301 ms
42,112 KB
testcase_09 WA -
testcase_10 AC 117 ms
41,168 KB
testcase_11 AC 320 ms
41,444 KB
testcase_12 AC 103 ms
41,768 KB
testcase_13 AC 113 ms
41,000 KB
testcase_14 AC 103 ms
41,212 KB
testcase_15 AC 98 ms
41,076 KB
testcase_16 AC 149 ms
41,472 KB
testcase_17 AC 108 ms
41,532 KB
testcase_18 AC 115 ms
41,252 KB
testcase_19 AC 104 ms
41,164 KB
testcase_20 AC 120 ms
40,060 KB
testcase_21 AC 102 ms
40,004 KB
testcase_22 AC 106 ms
39,768 KB
testcase_23 WA -
testcase_24 AC 102 ms
41,600 KB
testcase_25 AC 114 ms
39,772 KB
testcase_26 AC 110 ms
41,232 KB
testcase_27 AC 205 ms
41,352 KB
testcase_28 AC 322 ms
41,756 KB
testcase_29 WA -
testcase_30 AC 176 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

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);
			}
		}
		//System.out.println(p);
		int[] root = new int[N+1];
		root[0] = 0;
		root[1] = -1;
		for(int i:p){
			for(int j = N;j >= 0;j--){
				if(j-i >= 0&&root[j-i] != -1){
					root[j] = Math.max(root[j-i] + 1, root[j]);
					if(root[j] == 1 && !p.contains(j)){
						root[j] = -1;
					}
				}
			}
			/*for(int k:root){
				System.out.print(k + "  ");
			}
			System.out.println();*/
		}

		System.out.println(root[N]);
		//System.out.println(t.get(N));

	}

}
0