結果

問題 No.800 四平方定理
ユーザー 34056915823405691582
提出日時 2019-03-22 18:33:04
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 865 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-09-19 02:31:07
合計ジャッジ時間 3,552 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 54 ms
32,640 KB
testcase_11 AC 59 ms
36,480 KB
testcase_12 AC 59 ms
35,968 KB
testcase_13 AC 53 ms
34,176 KB
testcase_14 AC 57 ms
36,480 KB
testcase_15 AC 62 ms
36,352 KB
testcase_16 AC 59 ms
36,864 KB
testcase_17 AC 59 ms
36,992 KB
testcase_18 AC 63 ms
36,736 KB
testcase_19 AC 62 ms
36,736 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 65 ms
36,864 KB
testcase_23 AC 133 ms
64,256 KB
testcase_24 AC 123 ms
64,256 KB
testcase_25 AC 130 ms
64,000 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 124 ms
63,872 KB
testcase_29 AC 130 ms
64,128 KB
testcase_30 AC 128 ms
64,000 KB
testcase_31 AC 113 ms
59,648 KB
testcase_32 AC 126 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(void){
  int n, d, i, j;
  scanf("%d %d", &n, &d);
  int *xy, *zwd;
  xy=malloc(sizeof(int)*n*n*2);
  if(xy == NULL) exit(1);
  zwd=malloc(sizeof(int)*n*n*2);
  if(zwd == NULL) exit(1);
  for(i=0; i<n*n*2; i++) xy[i]=zwd[i]=0;
  for(i=1;i<=n;i++){
    for(j=1;j<=n;j++){
      xy[i*i+j*j-1]++;
    }
  }
  for(i=1;i<=n;i++){
    for(j=1;j<=n;j++){
      if(1<=i*i-j*j+d && i*i-j*j+d<=n*n*2) zwd[i*i-j*j+d-1]++;
    }
  }
  for(i=0; i<n*n*2; i++) xy[i]*=zwd[i];
  for(i=j=0; i<n*n*2; i++) j+=xy[i];
  printf("%d\n", j);
  free(xy);
  free(zwd);
  return 0;
}
0