結果

問題 No.800 四平方定理
ユーザー Y17Y17
提出日時 2019-03-17 22:16:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,270 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 1,381 ms
コンパイル使用メモリ 164,704 KB
実行使用メモリ 95,140 KB
最終ジャッジ日時 2024-07-07 23:52:55
合計ジャッジ時間 16,992 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,816 KB
testcase_01 AC 9 ms
6,816 KB
testcase_02 AC 6 ms
6,940 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 7 ms
6,940 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 7 ms
6,948 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 470 ms
48,884 KB
testcase_11 AC 563 ms
52,472 KB
testcase_12 AC 538 ms
54,264 KB
testcase_13 AC 405 ms
44,540 KB
testcase_14 AC 473 ms
50,040 KB
testcase_15 AC 605 ms
53,496 KB
testcase_16 AC 478 ms
50,260 KB
testcase_17 AC 469 ms
48,508 KB
testcase_18 AC 632 ms
59,128 KB
testcase_19 AC 752 ms
82,556 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 623 ms
56,952 KB
testcase_23 AC 1,270 ms
95,140 KB
testcase_24 AC 1,107 ms
88,872 KB
testcase_25 AC 1,242 ms
93,348 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1,099 ms
88,872 KB
testcase_29 AC 1,165 ms
94,372 KB
testcase_30 AC 1,065 ms
86,176 KB
testcase_31 AC 953 ms
84,384 KB
testcase_32 AC 1,105 ms
87,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    long long ans = 0;
    unordered_map<long long, long long> mp;

    for(long long i = 1;i <= n;i++){
        for(long long 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++){
            ans += mp[i*i+j*j];
        }
    }


    cout << ans << endl;

    return 0;
}
0