結果

問題 No.2795 Perfect Number
ユーザー 2475057t2475057t
提出日時 2024-07-07 18:54:50
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 384 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-07 18:54:59
合計ジャッジ時間 8,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 RE -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 96 ms
5,376 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 7 ms
5,376 KB
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 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 1,000 ms
6,944 KB
testcase_33 AC 859 ms
5,376 KB
testcase_34 AC 1,161 ms
5,376 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 476 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void)
{
    int N=0, sum=0, count=0;
    scanf("%d", &N);
    int a[N];
    for(int i=1; i<=N; i++){
        if(N%i == 0){
            a[count] = i;
            count++;
        }
    }
    for(int j=0; j<count; j++){
        sum = sum + a[j];
    }
    if(sum == 2*N){
        printf("Yes\n");
    }
    else{
        printf("No\n");
    }
    return 0;
}
0