結果

問題 No.2795 Perfect Number
ユーザー 2475057t2475057t
提出日時 2024-07-08 23:21:57
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 1,283 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-07-08 23:22:10
合計ジャッジ時間 9,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void)
{
    long int N, Q;
    scanf("%d %d", &N, &Q);
    int a[N], l[Q], r[Q], k[Q], y[Q];
    for(int p=0; p<N; p++){
        scanf("%d", &a[p]);
    }
    for(long int q=0; q<Q; q++){
        scanf("%d %d %d", &l[q], &r[q], &k[q]);
    }
    for(long int i=0; i<Q; i++){
        y[i] = 0;
        for(int j=l[i]-1; j<r[i]; j++){
            if(a[j]%k[i] == 0){
                y[i]++;
            }
        }
        printf("%d\n", y[i]);
    }

    return 0;
}
0