結果

問題 No.719 Coprime
ユーザー 37zigen37zigen
提出日時 2018-07-29 01:14:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 3,000 ms
コード長 1,721 bytes
コンパイル時間 2,583 ms
コンパイル使用メモリ 80,912 KB
実行使用メモリ 45,376 KB
最終ジャッジ日時 2024-07-06 19:54:06
合計ジャッジ時間 12,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,476 KB
testcase_01 AC 131 ms
41,376 KB
testcase_02 AC 129 ms
41,520 KB
testcase_03 AC 130 ms
41,500 KB
testcase_04 AC 118 ms
40,408 KB
testcase_05 AC 132 ms
41,524 KB
testcase_06 AC 134 ms
41,476 KB
testcase_07 AC 134 ms
41,520 KB
testcase_08 AC 129 ms
41,204 KB
testcase_09 AC 129 ms
41,376 KB
testcase_10 AC 129 ms
41,416 KB
testcase_11 AC 130 ms
41,628 KB
testcase_12 AC 134 ms
41,672 KB
testcase_13 AC 133 ms
41,832 KB
testcase_14 AC 134 ms
41,500 KB
testcase_15 AC 133 ms
41,072 KB
testcase_16 AC 135 ms
41,204 KB
testcase_17 AC 134 ms
41,500 KB
testcase_18 AC 138 ms
41,572 KB
testcase_19 AC 135 ms
41,520 KB
testcase_20 AC 134 ms
41,200 KB
testcase_21 AC 119 ms
40,180 KB
testcase_22 AC 132 ms
41,444 KB
testcase_23 AC 131 ms
41,340 KB
testcase_24 AC 133 ms
41,288 KB
testcase_25 AC 140 ms
41,484 KB
testcase_26 AC 137 ms
41,760 KB
testcase_27 AC 139 ms
41,368 KB
testcase_28 AC 138 ms
41,144 KB
testcase_29 AC 137 ms
41,416 KB
testcase_30 AC 137 ms
41,500 KB
testcase_31 AC 137 ms
41,584 KB
testcase_32 AC 140 ms
41,412 KB
testcase_33 AC 140 ms
41,484 KB
testcase_34 AC 139 ms
41,628 KB
testcase_35 AC 138 ms
41,208 KB
testcase_36 AC 127 ms
40,424 KB
testcase_37 AC 138 ms
41,492 KB
testcase_38 AC 136 ms
41,460 KB
testcase_39 AC 139 ms
41,716 KB
testcase_40 AC 139 ms
41,492 KB
testcase_41 AC 145 ms
41,720 KB
testcase_42 AC 131 ms
40,664 KB
testcase_43 AC 146 ms
41,716 KB
testcase_44 AC 148 ms
41,716 KB
testcase_45 AC 146 ms
41,552 KB
testcase_46 AC 161 ms
42,288 KB
testcase_47 AC 160 ms
41,932 KB
testcase_48 AC 161 ms
41,968 KB
testcase_49 AC 161 ms
42,036 KB
testcase_50 AC 156 ms
42,236 KB
testcase_51 AC 154 ms
42,080 KB
testcase_52 AC 160 ms
42,452 KB
testcase_53 AC 162 ms
43,084 KB
testcase_54 AC 177 ms
43,900 KB
testcase_55 AC 179 ms
43,900 KB
testcase_56 AC 178 ms
44,104 KB
testcase_57 AC 180 ms
44,196 KB
testcase_58 AC 183 ms
45,312 KB
testcase_59 AC 187 ms
45,376 KB
testcase_60 AC 184 ms
45,016 KB
権限があれば一括ダウンロードができます

ソースコード

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[j]) == 0) {
						ndp[s | g[j]] = Math.max(ndp[s | g[j]], 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