結果

問題 No.800 四平方定理
ユーザー kakira9618kakira9618
提出日時 2019-03-18 00:04:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 59,756 KB
実行使用メモリ 65,728 KB
最終ジャッジ日時 2024-07-08 07:42:03
合計ジャッジ時間 3,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
65,664 KB
testcase_01 AC 37 ms
65,536 KB
testcase_02 AC 37 ms
65,536 KB
testcase_03 AC 36 ms
65,592 KB
testcase_04 AC 36 ms
65,664 KB
testcase_05 AC 38 ms
65,664 KB
testcase_06 AC 37 ms
65,664 KB
testcase_07 AC 37 ms
65,536 KB
testcase_08 AC 37 ms
65,600 KB
testcase_09 AC 36 ms
65,664 KB
testcase_10 AC 54 ms
65,548 KB
testcase_11 AC 57 ms
65,556 KB
testcase_12 AC 57 ms
65,536 KB
testcase_13 AC 51 ms
65,664 KB
testcase_14 AC 56 ms
65,664 KB
testcase_15 AC 54 ms
65,664 KB
testcase_16 AC 55 ms
65,536 KB
testcase_17 AC 52 ms
65,532 KB
testcase_18 AC 62 ms
65,564 KB
testcase_19 AC 57 ms
65,536 KB
testcase_20 AC 37 ms
65,536 KB
testcase_21 AC 37 ms
65,664 KB
testcase_22 AC 68 ms
65,632 KB
testcase_23 AC 87 ms
65,620 KB
testcase_24 AC 75 ms
65,724 KB
testcase_25 AC 87 ms
65,548 KB
testcase_26 AC 37 ms
65,620 KB
testcase_27 AC 36 ms
65,612 KB
testcase_28 AC 78 ms
65,728 KB
testcase_29 AC 80 ms
65,536 KB
testcase_30 AC 90 ms
65,620 KB
testcase_31 AC 73 ms
65,536 KB
testcase_32 AC 80 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using ll = long long;

int main() {
    int N, D;
    cin >> N >> D;
    vector<int> cnt1(2 * 2000 * 2000 + 1);
    vector<int> cnt2(2 * 2000 * 2000 + 1);
    for(int i = 1; i <= N; i++) {
        for(int j = 1; j <= N; j++) {
            cnt1[i * i + j * j]++;
            if (i * i - j * j + D >= 0 && i * i - j * j + D < cnt2.size()) cnt2[i * i - j * j + D]++;
        }
    }
    
    ll ans = 0;
    for(int i = 0; i < cnt1.size(); i++) {
        ans += cnt1[i] * cnt2[i];
    }
    cout << ans << endl;
    
    return 0;
}
0