結果

問題 No.800 四平方定理
ユーザー kyo1kyo1
提出日時 2020-06-18 21:48:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 448 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 204,428 KB
実行使用メモリ 164,788 KB
最終ジャッジ日時 2024-07-03 13:02:13
合計ジャッジ時間 32,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 13 ms
5,788 KB
testcase_02 AC 10 ms
5,504 KB
testcase_03 AC 12 ms
5,532 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 10 ms
5,532 KB
testcase_06 AC 15 ms
6,296 KB
testcase_07 AC 12 ms
5,664 KB
testcase_08 AC 16 ms
6,428 KB
testcase_09 AC 13 ms
5,916 KB
testcase_10 AC 746 ms
58,892 KB
testcase_11 AC 1,075 ms
82,596 KB
testcase_12 AC 1,034 ms
82,700 KB
testcase_13 AC 1,010 ms
82,612 KB
testcase_14 AC 1,144 ms
82,604 KB
testcase_15 AC 1,048 ms
82,696 KB
testcase_16 AC 1,120 ms
82,664 KB
testcase_17 AC 1,090 ms
82,696 KB
testcase_18 AC 1,039 ms
82,772 KB
testcase_19 AC 1,082 ms
82,572 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1,040 ms
82,576 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,951 ms
112,824 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int N, D;
  cin >> N >> D;
  unordered_map<int, int> mp;
  for (int x = 1; x < N + 1; x++) {
    for (int y = 1; y < N + 1; y++) {
      mp[x * x + y * y]++;
    }
  }
  int res = 0;
  for (int z = 1; z < N + 1; z++) {
    for (int w = 1; w < N + 1; w++) {
      res += mp[D + w * w - z * z];
    }
  }
  cout << res << '\n';
  return 0;
}
0