結果

問題 No.1791 Repeat Multiplication
ユーザー tentententen
提出日時 2023-04-18 12:26:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 413 ms / 3,000 ms
コード長 2,116 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 92,244 KB
実行使用メモリ 74,792 KB
最終ジャッジ日時 2024-10-13 10:50:38
合計ジャッジ時間 15,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,080 KB
testcase_01 AC 48 ms
37,092 KB
testcase_02 AC 50 ms
37,128 KB
testcase_03 AC 48 ms
36,948 KB
testcase_04 AC 52 ms
37,020 KB
testcase_05 AC 53 ms
37,076 KB
testcase_06 AC 50 ms
36,524 KB
testcase_07 AC 54 ms
37,116 KB
testcase_08 AC 233 ms
48,108 KB
testcase_09 AC 217 ms
47,100 KB
testcase_10 AC 216 ms
49,796 KB
testcase_11 AC 208 ms
47,432 KB
testcase_12 AC 180 ms
44,600 KB
testcase_13 AC 386 ms
72,352 KB
testcase_14 AC 412 ms
73,084 KB
testcase_15 AC 357 ms
64,740 KB
testcase_16 AC 336 ms
64,568 KB
testcase_17 AC 410 ms
73,836 KB
testcase_18 AC 368 ms
68,696 KB
testcase_19 AC 396 ms
72,052 KB
testcase_20 AC 349 ms
66,064 KB
testcase_21 AC 378 ms
71,968 KB
testcase_22 AC 392 ms
74,176 KB
testcase_23 AC 381 ms
67,292 KB
testcase_24 AC 393 ms
72,824 KB
testcase_25 AC 370 ms
70,872 KB
testcase_26 AC 392 ms
73,344 KB
testcase_27 AC 377 ms
68,564 KB
testcase_28 AC 413 ms
74,640 KB
testcase_29 AC 407 ms
74,584 KB
testcase_30 AC 404 ms
74,592 KB
testcase_31 AC 46 ms
36,872 KB
testcase_32 AC 407 ms
74,792 KB
testcase_33 AC 406 ms
74,660 KB
testcase_34 AC 409 ms
74,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long[] lefts = new long[n + 1];
        lefts[1] = 1;
        for (int i = 1; i <= n; i++) {
            for (int j = 2; j * i <= n; j++) {
                lefts[j * i] += lefts[i];
            }
        }
        long[] rights = new long[n + 1];
        for (int i = n; i >= 1; i--) {
            rights[i] = 1;
            for (int j = 2; j * i <= n; j++) {
                rights[i] += rights[j * i];
            }
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int x = sc.nextInt();
            sb.append(lefts[x] * rights[x]).append("\n");
        }
        System.out.print(sb);
    }
}
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();
    }
    
}
0