結果

問題 No.800 四平方定理
ユーザー akakimidoriakakimidori
提出日時 2019-03-17 21:25:31
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-07-07 20:13:09
合計ジャッジ時間 1,500 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 15 ms
17,024 KB
testcase_11 AC 14 ms
18,936 KB
testcase_12 AC 16 ms
18,688 KB
testcase_13 AC 12 ms
17,664 KB
testcase_14 AC 13 ms
18,944 KB
testcase_15 AC 13 ms
18,688 KB
testcase_16 AC 14 ms
18,944 KB
testcase_17 AC 13 ms
19,072 KB
testcase_18 AC 16 ms
19,040 KB
testcase_19 AC 14 ms
19,040 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 16 ms
19,072 KB
testcase_23 AC 41 ms
32,384 KB
testcase_24 AC 40 ms
32,384 KB
testcase_25 AC 41 ms
32,256 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 0 ms
5,376 KB
testcase_28 AC 38 ms
32,384 KB
testcase_29 AC 39 ms
32,384 KB
testcase_30 AC 37 ms
32,384 KB
testcase_31 AC 35 ms
30,208 KB
testcase_32 AC 39 ms
32,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long int int64;

void run(void){
  int n,d;
  scanf("%d%d",&n,&d);
  int len=2*n*n;
  int *dp=(int *)calloc(len+1,sizeof(int));
  int i,j;
  for(i=1;i<=n;i++){
    for(j=1;j<=n;j++){
      dp[i*i+j*j]++;
    }
  }
  int64 ans=0;
  for(i=1;i<=n;i++){
    for(j=1;j<=n;j++){
      int v=d+j*j-i*i;
      if(0<=v && v<=len){
	ans+=dp[v];
      }
    }
  }
  printf("%lld\n",ans);
}

int main(void){
  run();
  return 0;
}
0