結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

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