結果

問題 No.800 四平方定理
ユーザー Artemis2718Artemis2718
提出日時 2019-04-27 11:23:49
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-05-05 14:13:27
合計ジャッジ時間 2,948 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 6 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 45 ms
26,496 KB
testcase_11 AC 49 ms
28,544 KB
testcase_12 AC 55 ms
29,184 KB
testcase_13 AC 43 ms
25,728 KB
testcase_14 AC 47 ms
27,520 KB
testcase_15 AC 58 ms
29,440 KB
testcase_16 AC 48 ms
27,776 KB
testcase_17 AC 47 ms
27,776 KB
testcase_18 AC 53 ms
31,616 KB
testcase_19 AC 53 ms
31,616 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 55 ms
31,744 KB
testcase_23 AC 121 ms
51,968 KB
testcase_24 AC 113 ms
48,000 KB
testcase_25 AC 120 ms
51,840 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 108 ms
47,744 KB
testcase_29 AC 119 ms
49,920 KB
testcase_30 AC 111 ms
47,872 KB
testcase_31 AC 103 ms
44,672 KB
testcase_32 AC 114 ms
48,640 KB
権限があれば一括ダウンロードができます

ソースコード

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)*8000000);
    cnt2 = (int *)malloc(sizeof(int)*8000000);
    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<=8000000;k++){
        ans += cnt1[k]*cnt2[k];
    }
    printf("%d\n",ans);
    free(cnt1);
    free(cnt2);
    return 0;
}
0