結果

問題 No.1791 Repeat Multiplication
ユーザー ripityripity
提出日時 2021-11-21 15:39:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 880 ms / 3,000 ms
コード長 598 bytes
コンパイル時間 2,654 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 81,224 KB
最終ジャッジ日時 2024-09-15 14:51:27
合計ジャッジ時間 27,312 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,972 KB
testcase_01 AC 123 ms
40,676 KB
testcase_02 AC 116 ms
40,308 KB
testcase_03 AC 133 ms
41,312 KB
testcase_04 AC 167 ms
41,504 KB
testcase_05 AC 179 ms
42,052 KB
testcase_06 AC 141 ms
41,024 KB
testcase_07 AC 170 ms
41,492 KB
testcase_08 AC 678 ms
49,420 KB
testcase_09 AC 648 ms
49,452 KB
testcase_10 AC 638 ms
49,340 KB
testcase_11 AC 599 ms
49,164 KB
testcase_12 AC 460 ms
47,380 KB
testcase_13 AC 773 ms
74,924 KB
testcase_14 AC 814 ms
76,636 KB
testcase_15 AC 754 ms
67,636 KB
testcase_16 AC 691 ms
66,192 KB
testcase_17 AC 753 ms
79,460 KB
testcase_18 AC 707 ms
73,740 KB
testcase_19 AC 760 ms
74,680 KB
testcase_20 AC 704 ms
70,936 KB
testcase_21 AC 760 ms
74,444 KB
testcase_22 AC 780 ms
79,108 KB
testcase_23 AC 769 ms
68,844 KB
testcase_24 AC 794 ms
77,752 KB
testcase_25 AC 737 ms
76,704 KB
testcase_26 AC 800 ms
78,464 KB
testcase_27 AC 766 ms
70,240 KB
testcase_28 AC 846 ms
78,292 KB
testcase_29 AC 880 ms
77,228 KB
testcase_30 AC 774 ms
81,224 KB
testcase_31 AC 119 ms
40,228 KB
testcase_32 AC 786 ms
78,936 KB
testcase_33 AC 765 ms
80,396 KB
testcase_34 AC 769 ms
76,496 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 = sc.nextInt();
			pw.println(dp[x]*sum[N/x]);
		}
		
		sc.close();
		pw.flush();
		
	}
	
}
0