結果

問題 No.1791 Repeat Multiplication
ユーザー ytftytft
提出日時 2021-12-25 14:45:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 1,505 ms
コンパイル使用メモリ 167,140 KB
実行使用メモリ 15,172 KB
最終ジャッジ日時 2024-09-21 17:07:03
合計ジャッジ時間 10,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 161 ms
5,376 KB
testcase_09 AC 144 ms
5,376 KB
testcase_10 AC 143 ms
5,376 KB
testcase_11 AC 128 ms
5,376 KB
testcase_12 AC 77 ms
5,376 KB
testcase_13 AC 264 ms
14,336 KB
testcase_14 AC 267 ms
14,516 KB
testcase_15 AC 237 ms
11,592 KB
testcase_16 AC 236 ms
11,372 KB
testcase_17 AC 267 ms
14,848 KB
testcase_18 AC 252 ms
12,544 KB
testcase_19 AC 261 ms
14,080 KB
testcase_20 AC 241 ms
11,776 KB
testcase_21 AC 260 ms
13,952 KB
testcase_22 AC 274 ms
14,884 KB
testcase_23 WA -
testcase_24 AC 274 ms
14,436 KB
testcase_25 AC 260 ms
13,660 KB
testcase_26 AC 276 ms
14,668 KB
testcase_27 AC 248 ms
12,696 KB
testcase_28 WA -
testcase_29 AC 278 ms
15,172 KB
testcase_30 AC 274 ms
15,144 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 WA -
testcase_33 AC 274 ms
15,120 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int N,Q,x;
    cin>>N>>Q;
    int a[N],b[N];
    for(int i=N-1;i>=0;--i){
        a[i]=1;
        for(int j=i*2+1;j<N;j+=i+1){
            a[i]+=a[j];
        }
    }
    fill(b+1,b+N,0);
    b[0]=1;
    for(int i=0;i<N;++i){
        for(int j=i*2+1;j<N;j+=i+1){
            b[j]+=b[i];
        }
    }
    for(int i=0;i<Q;++i){
        cin>>x;
        cout<<(a[x-1]*b[x-1])<<endl;
    }
}
0