結果

問題 No.719 Coprime
ユーザー 37zigen37zigen
提出日時 2018-07-29 01:02:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,721 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 79,812 KB
実行使用メモリ 44,880 KB
最終ジャッジ日時 2024-07-06 15:51:56
合計ジャッジ時間 10,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,072 KB
testcase_01 AC 105 ms
41,084 KB
testcase_02 AC 93 ms
40,292 KB
testcase_03 AC 103 ms
41,028 KB
testcase_04 AC 95 ms
40,228 KB
testcase_05 AC 103 ms
41,124 KB
testcase_06 AC 105 ms
40,884 KB
testcase_07 AC 95 ms
40,136 KB
testcase_08 AC 103 ms
41,012 KB
testcase_09 AC 103 ms
40,988 KB
testcase_10 AC 105 ms
40,776 KB
testcase_11 AC 102 ms
41,012 KB
testcase_12 AC 102 ms
41,276 KB
testcase_13 AC 106 ms
41,432 KB
testcase_14 AC 107 ms
41,008 KB
testcase_15 AC 103 ms
41,112 KB
testcase_16 AC 103 ms
41,028 KB
testcase_17 AC 104 ms
41,028 KB
testcase_18 AC 106 ms
41,300 KB
testcase_19 AC 103 ms
41,064 KB
testcase_20 AC 103 ms
41,144 KB
testcase_21 AC 105 ms
40,828 KB
testcase_22 AC 105 ms
40,984 KB
testcase_23 AC 107 ms
41,028 KB
testcase_24 AC 106 ms
40,984 KB
testcase_25 AC 110 ms
41,240 KB
testcase_26 AC 109 ms
41,048 KB
testcase_27 AC 110 ms
41,388 KB
testcase_28 AC 108 ms
41,292 KB
testcase_29 AC 108 ms
41,292 KB
testcase_30 AC 107 ms
41,276 KB
testcase_31 AC 106 ms
40,928 KB
testcase_32 AC 105 ms
41,276 KB
testcase_33 AC 108 ms
41,216 KB
testcase_34 AC 107 ms
41,120 KB
testcase_35 AC 109 ms
40,256 KB
testcase_36 AC 107 ms
41,304 KB
testcase_37 AC 96 ms
40,596 KB
testcase_38 AC 108 ms
41,072 KB
testcase_39 AC 109 ms
41,272 KB
testcase_40 AC 107 ms
41,164 KB
testcase_41 AC 121 ms
41,404 KB
testcase_42 AC 125 ms
41,316 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		boolean[] isPrime = new boolean[1263];
		int[] g = new int[isPrime.length];
		Arrays.fill(isPrime, true);
		isPrime[0] = isPrime[1] = false;
		int cnt = 0;
		for (int i = 2; i < isPrime.length; ++i) {
			if (!isPrime[i])
				continue;
			for (int j = 2 * i; j < isPrime.length; j += i) {
				isPrime[j] = false;
			}
			if (i * i <= isPrime.length)
				for (int j = i; j < isPrime.length; j += i) {
					g[j] |= 1 << cnt;
				}
			++cnt;
		}
		ArrayList<Integer> plist = new ArrayList<>();
		for (int i = 0; i < isPrime.length; ++i) {
			if (isPrime[i])
				plist.add(i);
		}
		int N = sc.nextInt();
		boolean[] vis = new boolean[N + 1];
		long[] dp = new long[1 << 11];
		for (int i = N; i > plist.get(10); --i) {
			if (!isPrime[i])
				continue;
			long[] ndp = Arrays.copyOf(dp, dp.length);
			for (int j = i; j <= N; j += i) {
				vis[j] = true;
				for (int s = 0; s < 1 << 11; ++s) {
					if ((s & g[i]) == 0) {
						ndp[s | g[i]] = Math.max(ndp[s | g[i]], dp[s] + j);
					}
				}
			}
			dp = ndp;
		}

		for (int i = 2; i <= N; ++i) {
			if (vis[i])
				continue;
			for (int s = 0; s < 1 << 11; ++s) {
				if ((s & g[i]) == 0)
					dp[s | g[i]] = Math.max(dp[s | g[i]], dp[s] + i);
			}
		}
		long ans = 0;
		for (long v : dp)
			ans = Math.max(ans, v);
		System.out.println(ans);
	}

	long gcd(long a, long b) {
		if (a > b)
			return gcd(b, a);
		if (a == 0)
			return b;
		return gcd(a, b % a);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0