結果

問題 No.1791 Repeat Multiplication
ユーザー laneguelanegue
提出日時 2021-12-24 22:20:26
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 195 ms / 3,000 ms
コード長 580 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 234,748 KB
実行使用メモリ 29,904 KB
最終ジャッジ日時 2024-06-22 13:54:55
合計ジャッジ時間 8,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 47 ms
6,944 KB
testcase_09 AC 44 ms
6,944 KB
testcase_10 AC 41 ms
6,944 KB
testcase_11 AC 38 ms
6,944 KB
testcase_12 AC 25 ms
6,944 KB
testcase_13 AC 172 ms
26,324 KB
testcase_14 AC 176 ms
27,680 KB
testcase_15 AC 130 ms
22,336 KB
testcase_16 AC 130 ms
23,168 KB
testcase_17 AC 174 ms
27,808 KB
testcase_18 AC 151 ms
23,264 KB
testcase_19 AC 162 ms
26,016 KB
testcase_20 AC 131 ms
21,552 KB
testcase_21 AC 161 ms
26,852 KB
testcase_22 AC 180 ms
28,304 KB
testcase_23 AC 142 ms
22,556 KB
testcase_24 AC 180 ms
26,580 KB
testcase_25 AC 167 ms
25,620 KB
testcase_26 AC 184 ms
26,912 KB
testcase_27 AC 150 ms
24,916 KB
testcase_28 AC 191 ms
29,224 KB
testcase_29 AC 191 ms
28,704 KB
testcase_30 AC 187 ms
28,252 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 187 ms
29,904 KB
testcase_33 AC 190 ms
29,192 KB
testcase_34 AC 195 ms
29,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main(){
	auto input = readln.chomp.split(" ");
	auto N = input[0].to!long;
	auto Q = input[1].to!int;
	auto count = new long[N + 1];
	count[1] = 1;
	for(auto n = 1; n <= N; n++){
		for(auto m = n * 2; m <= N; m += n){
			count[m] += count[n];
		}
	}
	//stderr.writeln(count);
	auto reverse = new long[N + 1];
	for(auto n = N; n > 0; n--){
		reverse[n] = 1;
		for(auto m = n * 2; m <= N; m += n){
			reverse[n] += reverse[m];
		}
	}
	//stderr.writeln(reverse);
	for(auto q = 0; q < Q; q++){
		auto x = readln.chomp.to!long;
		writeln(count[x] * reverse[x]);
	}
}
0