結果
問題 | No.2211 Frequency Table of GCD |
ユーザー | tenten |
提出日時 | 2023-03-30 12:45:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 777 ms / 2,000 ms |
コード長 | 2,537 bytes |
コンパイル時間 | 2,813 ms |
コンパイル使用メモリ | 91,988 KB |
実行使用メモリ | 64,528 KB |
最終ジャッジ日時 | 2024-09-22 00:58:40 |
合計ジャッジ時間 | 17,941 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 97 ms
42,272 KB |
testcase_01 | AC | 100 ms
42,300 KB |
testcase_02 | AC | 109 ms
42,344 KB |
testcase_03 | AC | 264 ms
45,472 KB |
testcase_04 | AC | 491 ms
50,684 KB |
testcase_05 | AC | 586 ms
52,824 KB |
testcase_06 | AC | 467 ms
49,900 KB |
testcase_07 | AC | 590 ms
53,484 KB |
testcase_08 | AC | 216 ms
44,120 KB |
testcase_09 | AC | 217 ms
44,180 KB |
testcase_10 | AC | 270 ms
44,988 KB |
testcase_11 | AC | 259 ms
44,912 KB |
testcase_12 | AC | 274 ms
44,684 KB |
testcase_13 | AC | 486 ms
50,472 KB |
testcase_14 | AC | 504 ms
50,548 KB |
testcase_15 | AC | 467 ms
49,056 KB |
testcase_16 | AC | 463 ms
49,744 KB |
testcase_17 | AC | 564 ms
52,408 KB |
testcase_18 | AC | 662 ms
57,084 KB |
testcase_19 | AC | 654 ms
56,556 KB |
testcase_20 | AC | 648 ms
56,768 KB |
testcase_21 | AC | 645 ms
57,060 KB |
testcase_22 | AC | 777 ms
60,908 KB |
testcase_23 | AC | 209 ms
45,288 KB |
testcase_24 | AC | 521 ms
51,040 KB |
testcase_25 | AC | 259 ms
44,940 KB |
testcase_26 | AC | 90 ms
41,688 KB |
testcase_27 | AC | 626 ms
64,528 KB |
testcase_28 | AC | 544 ms
51,868 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static final int MOD = 998244353; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); HashMap<Integer, Integer> counts = new HashMap<>(); for (int i = 0; i < n; i++) { int x = sc.nextInt(); counts.put(x, counts.getOrDefault(x, 0) + 1); } long[] dp = new long[m + 1]; for (int i = m; i >= 1; i--) { int tmp = 0; for (int j = 1; j * i <= 200001; j++) { tmp += counts.getOrDefault(j * i, 0); } dp[i] = (pow(2, tmp) - 1 + MOD) % MOD; for (int j = 2; j * i <= m; j++) { dp[i] += MOD - dp[j * i]; dp[i] %= MOD; } } StringBuilder sb = new StringBuilder(); for (int i = 1; i <= m; i++) { sb.append(dp[i]).append("\n"); } System.out.print(sb); } static long pow(long x, int p) { if (p == 0) { return 1; } else if (p % 2 == 0) { return pow(x * x % MOD, p / 2); } else { return pow(x, p - 1) * x % MOD; } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }