結果

問題 No.1791 Repeat Multiplication
ユーザー tentententen
提出日時 2021-12-21 08:18:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 468 ms / 3,000 ms
コード長 1,615 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 78,208 KB
実行使用メモリ 84,132 KB
最終ジャッジ日時 2024-09-15 15:32:59
合計ジャッジ時間 15,182 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,004 KB
testcase_01 AC 53 ms
37,116 KB
testcase_02 AC 51 ms
37,004 KB
testcase_03 AC 50 ms
36,748 KB
testcase_04 AC 53 ms
36,780 KB
testcase_05 AC 56 ms
37,240 KB
testcase_06 AC 51 ms
37,212 KB
testcase_07 AC 54 ms
36,776 KB
testcase_08 AC 273 ms
48,000 KB
testcase_09 AC 245 ms
47,500 KB
testcase_10 AC 299 ms
47,312 KB
testcase_11 AC 240 ms
47,344 KB
testcase_12 AC 188 ms
43,840 KB
testcase_13 AC 413 ms
80,672 KB
testcase_14 AC 418 ms
81,636 KB
testcase_15 AC 393 ms
71,568 KB
testcase_16 AC 370 ms
70,768 KB
testcase_17 AC 448 ms
82,588 KB
testcase_18 AC 409 ms
75,416 KB
testcase_19 AC 435 ms
80,236 KB
testcase_20 AC 396 ms
72,656 KB
testcase_21 AC 425 ms
79,456 KB
testcase_22 AC 446 ms
82,660 KB
testcase_23 AC 412 ms
73,560 KB
testcase_24 AC 437 ms
81,272 KB
testcase_25 AC 429 ms
78,472 KB
testcase_26 AC 447 ms
81,844 KB
testcase_27 AC 401 ms
75,488 KB
testcase_28 AC 466 ms
83,792 KB
testcase_29 AC 446 ms
83,780 KB
testcase_30 AC 454 ms
83,900 KB
testcase_31 AC 51 ms
36,988 KB
testcase_32 AC 467 ms
84,132 KB
testcase_33 AC 452 ms
83,716 KB
testcase_34 AC 468 ms
84,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] lefts = new int[n + 1];
        Arrays.fill(lefts, 1);
        for (int i = 2; i <= n; i++) {
            for (int j = 2; j * i <= n; j++) {
                lefts[j * i] += lefts[i];
            }
        }
        long[] rights = new long[n + 1];
        long[] ans = 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];
            }
            ans[i] = lefts[i] * rights[i];
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            sb.append(ans[sc.nextInt()]).append("\n");
        }
        System.out.print(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0