結果

問題 No.1791 Repeat Multiplication
ユーザー 沙耶花沙耶花
提出日時 2021-12-20 06:24:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 368 ms / 3,000 ms
コード長 571 bytes
コンパイル時間 4,410 ms
コンパイル使用メモリ 261,268 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-09-15 15:13:17
合計ジャッジ時間 13,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 164 ms
5,376 KB
testcase_09 AC 143 ms
5,376 KB
testcase_10 AC 145 ms
5,376 KB
testcase_11 AC 124 ms
5,376 KB
testcase_12 AC 75 ms
5,376 KB
testcase_13 AC 331 ms
24,960 KB
testcase_14 AC 336 ms
25,728 KB
testcase_15 AC 282 ms
19,456 KB
testcase_16 AC 279 ms
19,200 KB
testcase_17 AC 353 ms
26,368 KB
testcase_18 AC 301 ms
21,888 KB
testcase_19 AC 336 ms
24,832 KB
testcase_20 AC 290 ms
20,352 KB
testcase_21 AC 335 ms
24,576 KB
testcase_22 AC 347 ms
26,496 KB
testcase_23 AC 281 ms
20,736 KB
testcase_24 AC 342 ms
25,472 KB
testcase_25 AC 335 ms
23,680 KB
testcase_26 AC 348 ms
25,728 KB
testcase_27 AC 303 ms
21,888 KB
testcase_28 AC 356 ms
26,752 KB
testcase_29 AC 365 ms
27,008 KB
testcase_30 AC 368 ms
26,880 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 354 ms
26,880 KB
testcase_33 AC 365 ms
26,880 KB
testcase_34 AC 356 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 100000000000000
long long suf[2000000],pre[2000000];
int main(){
	
	int N,Q;
	cin>>N>>Q;
	
	suf[1] = 1;
	
	for(int i=1;i<=N;i++){
		for(int j=i*2;j<=N;j+=i){
			suf[j] += suf[i];
		}
	}
	
	for(int i=N;i>=1;i--){
		pre[i] = 1;
		for(int j=i*2;j<=N;j+=i)pre[i] += pre[j];
	}
	
	rep(_,Q){
		int x;
		cin>>x;
		long long ans = suf[x] * pre[x];
		cout<<ans<<endl;
	}
	
	return 0;
}
0