結果

問題 No.781 円周上の格子点の数え上げ
ユーザー akakimidoriakakimidori
提出日時 2019-01-11 21:56:37
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 40,960 KB
最終ジャッジ日時 2024-05-07 13:13:55
合計ジャッジ時間 1,673 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 92 ms
40,936 KB
testcase_09 AC 91 ms
40,960 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 110 ms
40,932 KB
testcase_13 AC 92 ms
40,944 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 42 ms
24,960 KB
testcase_18 AC 38 ms
24,944 KB
testcase_19 AC 39 ms
25,600 KB
testcase_20 AC 38 ms
25,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define MAX(a,b) ((a)>(b)?(a):(b))

typedef struct farey{
  int a,b,c,d;
} farey;

void run(void){
  int x,y;
  scanf("%d%d",&x,&y);
  int *cnt=(int *)calloc(y+1,sizeof(int));
  int k;
  for(k=1;k*k<=y;k++) cnt[k*k]+=4;
  for(k=1;2*k*k<=y;k++) cnt[2*k*k]+=4;
  farey stack[32];
  int top=0;
  stack[top++]=(farey){0,1,1,1};
  while(top>0){
    farey f=stack[--top];
    int p=f.a+f.c;
    int q=f.b+f.d;
    if(p*p+q*q>y) continue;
    for(k=1;k*k*(p*p+q*q)<=y;k++){
      cnt[k*k*(p*p+q*q)]+=8;
    }
    if(f.b<=f.d){
      stack[top++]=(farey){f.a,f.b,p,q};
      stack[top++]=(farey){p,q,f.c,f.d};
    } else {
      stack[top++]=(farey){p,q,f.c,f.d};
      stack[top++]=(farey){f.a,f.b,p,q};
    }
  }
  int max=cnt[x];
  for(k=x+1;k<=y;k++) max=MAX(max,cnt[k]);
  printf("%d\n",max);
}

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