結果

問題 No.800 四平方定理
ユーザー Y17Y17
提出日時 2019-03-17 21:53:31
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 596 bytes
コンパイル時間 1,295 ms
コンパイル使用メモリ 167,288 KB
実行使用メモリ 164,760 KB
最終ジャッジ日時 2024-07-07 22:17:48
合計ジャッジ時間 26,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 12 ms
5,900 KB
testcase_02 AC 9 ms
5,376 KB
testcase_03 AC 10 ms
5,640 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 14 ms
6,284 KB
testcase_07 AC 11 ms
5,512 KB
testcase_08 AC 16 ms
6,412 KB
testcase_09 AC 12 ms
5,764 KB
testcase_10 AC 626 ms
58,784 KB
testcase_11 AC 868 ms
82,552 KB
testcase_12 AC 818 ms
82,620 KB
testcase_13 AC 808 ms
82,656 KB
testcase_14 AC 877 ms
82,680 KB
testcase_15 AC 879 ms
82,552 KB
testcase_16 AC 918 ms
82,680 KB
testcase_17 AC 930 ms
82,680 KB
testcase_18 AC 857 ms
82,516 KB
testcase_19 AC 852 ms
82,548 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 908 ms
82,676 KB
testcase_23 AC 1,700 ms
114,592 KB
testcase_24 TLE -
testcase_25 AC 1,739 ms
112,552 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,701 ms
117,024 KB
testcase_31 AC 1,601 ms
113,064 KB
testcase_32 AC 1,773 ms
116,388 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;
    unordered_set<long long> st;
    for(long long i = 1;i <= n;i++){
        for(long long j = 1;j <= n;j++){
            mp[i*i+j*j]++;
            //st.insert(i*i+j*j);
        }
    }


  	for(long long i = 1;i <= n;i++){
        for(long long j = 1;j <= n;j++){
            //if(st.find(i*i-j*j+d) != st.end()){
                ans += mp[i*i-j*j+d];
            //}
        }
    }

    cout << ans << endl;

    return 0;
}
0