結果

問題 No.800 四平方定理
ユーザー Artemis2718Artemis2718
提出日時 2019-04-27 11:20:33
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 640 bytes
コンパイル時間 1,434 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 31,744 KB
最終ジャッジ日時 2024-05-05 14:09:36
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 5 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 36 ms
26,496 KB
testcase_11 AC 39 ms
28,416 KB
testcase_12 AC 42 ms
29,184 KB
testcase_13 AC 35 ms
25,728 KB
testcase_14 AC 39 ms
27,520 KB
testcase_15 AC 42 ms
29,312 KB
testcase_16 AC 38 ms
27,904 KB
testcase_17 AC 40 ms
27,776 KB
testcase_18 AC 45 ms
31,616 KB
testcase_19 AC 46 ms
31,616 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 49 ms
31,744 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    int n,d;
    int x,y,z,w;
    int k;
    int ans = 0;
    int *cnt1,*cnt2;

    cnt1 = (int *)malloc(sizeof(int)*5000000);
    cnt2 = (int *)malloc(sizeof(int)*5000000);
    scanf("%d%d",&n,&d);
    for(x=1;x<=n;x++){
        for(y=1;y<=n;y++){
            cnt1[(x*x+y*y)]++;
        }
    }
    for(z=1;z<=n;z++){
        for(w=1;w<=n;w++){
            if((w*w-z*z+d)>=0){
                cnt2[(w*w-z*z+d)]++;
            }
        }
    }
    for(k=1;k<=5000000;k++){
        ans += cnt1[k]*cnt2[k];
    }
    printf("%d\n",ans);
    free(cnt1);
    free(cnt2);
    return 0;
}
0