結果

問題 No.800 四平方定理
ユーザー ShibuyapShibuyap
提出日時 2019-10-14 15:03:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 1,582 ms
コンパイル使用メモリ 166,164 KB
実行使用メモリ 57,196 KB
最終ジャッジ日時 2024-06-06 09:46:48
合計ジャッジ時間 3,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 8 ms
6,944 KB
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 8 ms
7,756 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 8 ms
6,940 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 9 ms
7,624 KB
testcase_09 AC 8 ms
7,756 KB
testcase_10 AC 28 ms
30,276 KB
testcase_11 AC 32 ms
32,456 KB
testcase_12 AC 34 ms
33,608 KB
testcase_13 AC 27 ms
28,524 KB
testcase_14 AC 30 ms
31,812 KB
testcase_15 AC 34 ms
34,124 KB
testcase_16 AC 32 ms
32,900 KB
testcase_17 AC 33 ms
32,804 KB
testcase_18 AC 38 ms
34,632 KB
testcase_19 AC 35 ms
36,420 KB
testcase_20 AC 8 ms
6,944 KB
testcase_21 AC 8 ms
6,944 KB
testcase_22 AC 34 ms
36,424 KB
testcase_23 AC 79 ms
57,196 KB
testcase_24 AC 73 ms
51,076 KB
testcase_25 AC 79 ms
54,940 KB
testcase_26 AC 8 ms
6,944 KB
testcase_27 AC 9 ms
7,496 KB
testcase_28 AC 72 ms
50,936 KB
testcase_29 AC 77 ms
52,984 KB
testcase_30 AC 68 ms
50,992 KB
testcase_31 AC 64 ms
50,024 KB
testcase_32 AC 69 ms
51,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}
#define MAX_XY 8000005

int xy[MAX_XY];
int zw[MAX_XY];
int main() {
    int n, d;
    cin >> n >> d;
    
    srep(i,1,n+1){
        srep(j,1,n+1){
            xy[i*i + j*j]++;
        }
    }

    srep(i,1,n+1){
        srep(j,1,n+1){
            int tmp = d - (i + j) * (i - j);
            if(0 <= tmp)zw[tmp]++;
        }
    }

    int ans = 0;

    rep(i,MAX_XY){
        ans += xy[i] * zw[i];
    }

    cout << ans << endl;
    return 0;
}
 
 
 
0