結果

問題 No.800 四平方定理
ユーザー oxyshoweroxyshower
提出日時 2019-04-06 17:41:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,580 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 1,346 ms
コンパイル使用メモリ 163,796 KB
実行使用メモリ 65,984 KB
最終ジャッジ日時 2024-06-24 09:31:24
合計ジャッジ時間 22,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 20 ms
6,940 KB
testcase_02 AC 14 ms
6,940 KB
testcase_03 AC 16 ms
6,940 KB
testcase_04 AC 14 ms
6,940 KB
testcase_05 AC 15 ms
6,940 KB
testcase_06 AC 22 ms
6,940 KB
testcase_07 AC 17 ms
6,944 KB
testcase_08 AC 13 ms
6,944 KB
testcase_09 AC 20 ms
6,944 KB
testcase_10 AC 705 ms
34,200 KB
testcase_11 AC 768 ms
52,544 KB
testcase_12 AC 831 ms
52,540 KB
testcase_13 AC 649 ms
35,904 KB
testcase_14 AC 711 ms
52,548 KB
testcase_15 AC 831 ms
52,540 KB
testcase_16 AC 722 ms
52,540 KB
testcase_17 AC 732 ms
52,544 KB
testcase_18 AC 900 ms
52,544 KB
testcase_19 AC 907 ms
52,544 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 912 ms
52,544 KB
testcase_23 AC 1,573 ms
65,984 KB
testcase_24 AC 1,358 ms
65,796 KB
testcase_25 AC 1,580 ms
65,728 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,361 ms
65,596 KB
testcase_29 AC 1,519 ms
65,728 KB
testcase_30 AC 1,361 ms
65,596 KB
testcase_31 AC 1,255 ms
61,244 KB
testcase_32 AC 1,404 ms
65,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

signed main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  int N,D; cin >> N >> D;
  vector<int> xy,zw;
  for(int i = 1; i <= N; i++){
    for(int j = 1; j <= N; j++){
      xy.push_back(i*i + j*j);
      zw.push_back(i*i - j*j);
    }
  }
  sort(zw.begin(),zw.end());

  int ans = 0;
  for(auto p : xy){
    auto r = upper_bound(zw.begin(),zw.end(),D - p);
    auto l = lower_bound(zw.begin(),zw.end(),D - p);
    ans += r - l;
  }
  cout << ans << endl;

  return 0;
}
0