結果

問題 No.1791 Repeat Multiplication
ユーザー ygussanyygussany
提出日時 2021-12-20 00:08:34
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 510 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-09-15 14:58:31
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 112 ms
5,376 KB
testcase_09 AC 95 ms
5,376 KB
testcase_10 AC 93 ms
5,376 KB
testcase_11 AC 82 ms
5,376 KB
testcase_12 AC 42 ms
5,376 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int i, N, Q;
	long long ans[2][1500001];
	scanf("%d %d", &N, &Q);
	
	int j;
	for (i = N; i >= 1; i--) for (j = 2, ans[0][i] = 1; i * j <= N; j++) ans[0][i] += ans[0][i*j];
	for (i = 1; i <= N; i++) {
		for (j = 2, ans[1][i] = 1; j * j < i; j++) if (i % j == 0) ans[1][i] += ans[1][j] + ans[1][i/j];
		if (j * j == i) ans[1][i] += ans[1][j];
	}
	
	int x;
	for (i = 1; i <= Q; i++) {
		scanf("%d", &x);
		printf("%lld\n", ans[0][x] * ans[1][x]);
	}
	fflush(stdout);
	return 0;
}
0