結果

問題 No.1529 Constant Lcm
ユーザー ks2mks2m
提出日時 2021-06-04 20:28:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,471 ms / 3,000 ms
コード長 1,779 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 80,384 KB
実行使用メモリ 63,364 KB
最終ジャッジ日時 2024-04-29 23:52:51
合計ジャッジ時間 20,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,064 KB
testcase_01 AC 166 ms
42,432 KB
testcase_02 AC 101 ms
40,324 KB
testcase_03 AC 114 ms
41,072 KB
testcase_04 AC 114 ms
41,176 KB
testcase_05 AC 112 ms
41,320 KB
testcase_06 AC 118 ms
41,196 KB
testcase_07 AC 108 ms
41,016 KB
testcase_08 AC 115 ms
41,276 KB
testcase_09 AC 114 ms
41,264 KB
testcase_10 AC 1,221 ms
60,328 KB
testcase_11 AC 698 ms
54,764 KB
testcase_12 AC 225 ms
46,268 KB
testcase_13 AC 1,109 ms
57,684 KB
testcase_14 AC 821 ms
56,480 KB
testcase_15 AC 806 ms
56,200 KB
testcase_16 AC 736 ms
55,100 KB
testcase_17 AC 566 ms
52,924 KB
testcase_18 AC 656 ms
54,528 KB
testcase_19 AC 841 ms
56,344 KB
testcase_20 AC 1,426 ms
61,876 KB
testcase_21 AC 1,371 ms
62,652 KB
testcase_22 AC 1,471 ms
63,364 KB
testcase_23 AC 1,334 ms
61,944 KB
testcase_24 AC 1,249 ms
62,396 KB
testcase_25 AC 1,303 ms
62,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		Eratosthenes era = new Eratosthenes(n);
		Map<Integer, Integer> map = new HashMap<>();
		for (int i = 1; i < n; i++) {
			Map<Integer, Integer> map1 = era.bunkai(i);
			Map<Integer, Integer> map2 = era.bunkai(n - i);
			for (Integer key : map2.keySet()) {
				map1.put(key, map1.getOrDefault(key, 0) + map2.get(key));
			}
			for (Integer key : map1.keySet()) {
				map.put(key, Math.max(map.getOrDefault(key, 0), map1.get(key)));
			}
		}

		int mod = 998244353;
		long ans = 1;
		for (Integer key : map.keySet()) {
			ans *= power(key, map.get(key), mod);
			ans %= mod;
		}
		System.out.println(ans);
	}

	static long power(long x, long n, int m) {
		if (n == 0) {
			return 1;
		}
		long val = power(x, n / 2, m);
		val = val * val % m;
		if (n % 2 == 1) {
			val = val * x % m;
		}
		return val;
	}

	static class Eratosthenes {
		int[] div;

		public Eratosthenes(int n) {
			if (n < 2) return;
			div = new int[n + 1];
			div[0] = -1;
			div[1] = -1;
			int end = (int) Math.sqrt(n) + 1;
			for (int i = 2; i <= end; i++) {
				if (div[i] == 0) {
					div[i] = i;
					for (int j = i * i; j <= n; j+=i) {
						if (div[j] == 0) div[j] = i;
					}
				}
			}
			for (int i = end + 1; i <= n; i++) {
				if (div[i] == 0) div[i] = i;
			}
		}

		public Map<Integer, Integer> bunkai(int x) {
			Map<Integer, Integer> soinsu = new HashMap<>();
			while (x > 1) {
				Integer d = div[x];
				soinsu.put(d, soinsu.getOrDefault(d, 0) + 1);
				x /= d;
			}
			return soinsu;
		}

		public boolean isSosuu(int x) {
			return div[x] == x;
		}
	}
}
0