結果

問題 No.1791 Repeat Multiplication
ユーザー ripityripity
提出日時 2021-11-21 15:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 761 ms / 3,000 ms
コード長 613 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 75,244 KB
実行使用メモリ 79,656 KB
最終ジャッジ日時 2024-09-15 14:52:58
合計ジャッジ時間 23,490 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,336 KB
testcase_01 AC 134 ms
41,240 KB
testcase_02 AC 132 ms
41,544 KB
testcase_03 AC 135 ms
41,308 KB
testcase_04 AC 147 ms
41,512 KB
testcase_05 AC 159 ms
41,716 KB
testcase_06 AC 139 ms
41,340 KB
testcase_07 AC 147 ms
41,556 KB
testcase_08 AC 592 ms
49,816 KB
testcase_09 AC 560 ms
49,764 KB
testcase_10 AC 562 ms
49,560 KB
testcase_11 AC 546 ms
49,708 KB
testcase_12 AC 457 ms
49,152 KB
testcase_13 AC 696 ms
76,880 KB
testcase_14 AC 725 ms
75,276 KB
testcase_15 AC 697 ms
67,132 KB
testcase_16 AC 691 ms
66,636 KB
testcase_17 AC 732 ms
76,380 KB
testcase_18 AC 719 ms
70,364 KB
testcase_19 AC 647 ms
76,280 KB
testcase_20 AC 724 ms
68,060 KB
testcase_21 AC 710 ms
74,840 KB
testcase_22 AC 725 ms
78,852 KB
testcase_23 AC 686 ms
69,136 KB
testcase_24 AC 715 ms
77,228 KB
testcase_25 AC 687 ms
75,052 KB
testcase_26 AC 724 ms
77,808 KB
testcase_27 AC 687 ms
71,476 KB
testcase_28 AC 756 ms
76,844 KB
testcase_29 AC 723 ms
79,296 KB
testcase_30 AC 710 ms
79,656 KB
testcase_31 AC 118 ms
40,164 KB
testcase_32 AC 761 ms
77,104 KB
testcase_33 AC 713 ms
79,604 KB
testcase_34 AC 733 ms
79,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.io.PrintWriter;

public class Main {
	
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		PrintWriter pw = new PrintWriter(System.out);
		int N = sc.nextInt();
		int Q = sc.nextInt();
		long[] dp = new long[N+1];
		long[] sum = new long[N+1];
		dp[1] = 1;
		for( int i = 1; i <= N; i++ ) {
			sum[i] = dp[i]+sum[i-1];
			for( int j = 2; i*j <= N; j++ ) {
				dp[i*j] += dp[i];
			}
		}
		
		for( int i = 0; i < Q; i++ ) {
		    int x = Integer.parseInt(sc.next());
			pw.println(dp[x]*sum[N/x]);
		}
		
		sc.close();
		pw.flush();
		
	}
	
}
0