結果

問題 No.800 四平方定理
ユーザー Y17Y17
提出日時 2019-03-17 22:48:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 1,260 ms
コンパイル使用メモリ 159,396 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-07-08 01:13:55
合計ジャッジ時間 2,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 16 ms
13,184 KB
testcase_11 AC 16 ms
12,928 KB
testcase_12 AC 16 ms
14,080 KB
testcase_13 AC 14 ms
11,520 KB
testcase_14 AC 15 ms
12,160 KB
testcase_15 AC 17 ms
14,080 KB
testcase_16 AC 16 ms
12,160 KB
testcase_17 AC 15 ms
12,160 KB
testcase_18 AC 18 ms
16,128 KB
testcase_19 AC 18 ms
16,000 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 19 ms
16,128 KB
testcase_23 AC 43 ms
22,912 KB
testcase_24 AC 35 ms
19,072 KB
testcase_25 AC 44 ms
22,784 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 37 ms
19,072 KB
testcase_29 AC 42 ms
20,864 KB
testcase_30 AC 34 ms
19,072 KB
testcase_31 AC 32 ms
17,792 KB
testcase_32 AC 35 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int mp[8000010] = {};

int main(){
    int n, d;
    cin >> n >> d;

    int ans = 0;

    for(int i = 1;i <= n;i++){
        for(int j = 1;j <= n;j++){
            if(i*i-j*j+d > 0 && i*i-j*j+d <= n*n+n*n){
                mp[i*i-j*j+d]++;
            }
        }
    }

    for(long long i = 1;i <= n;i++){
        for(long long j = 1;j <= n;j++){
            if(i*i+j*j > 0){
                ans += mp[i*i+j*j];
            }
        }
    }


    cout << ans << endl;

    return 0;
}



0