結果

問題 No.800 四平方定理
ユーザー Y17Y17
提出日時 2019-03-17 22:21:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,562 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 1,624 ms
コンパイル使用メモリ 165,112 KB
実行使用メモリ 89,640 KB
最終ジャッジ日時 2024-07-08 00:05:54
合計ジャッジ時間 17,112 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 8 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 469 ms
46,072 KB
testcase_11 AC 440 ms
48,120 KB
testcase_12 AC 537 ms
51,324 KB
testcase_13 AC 338 ms
42,344 KB
testcase_14 AC 416 ms
44,156 KB
testcase_15 AC 536 ms
50,296 KB
testcase_16 AC 420 ms
44,664 KB
testcase_17 AC 402 ms
42,616 KB
testcase_18 AC 652 ms
57,588 KB
testcase_19 AC 695 ms
58,232 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 668 ms
55,416 KB
testcase_23 AC 1,289 ms
89,640 KB
testcase_24 AC 1,240 ms
82,680 KB
testcase_25 AC 1,562 ms
87,972 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 956 ms
82,604 KB
testcase_29 AC 1,133 ms
86,816 KB
testcase_30 AC 937 ms
82,592 KB
testcase_31 AC 941 ms
82,552 KB
testcase_32 AC 963 ms
82,556 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;

  	long long mi = LLONG_MAX;
  	long long ma = 0;
    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]++;
              	ma = max(ma, i*i-j*j+d);
              	mi = min(mi, 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 < mi) continue;
          	if(i*i+j*j > ma) break;
            ans += mp[i*i+j*j];
        }
    }


    cout << ans << endl;

    return 0;
}


0