結果

問題 No.2406 Difference of Coordinate Squared
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-07-12 01:42:46
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 131,072 KB
実行使用メモリ 7,156 KB
最終ジャッジ日時 2024-05-05 01:28:47
合計ジャッジ時間 2,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 11 ms
7,136 KB
testcase_02 AC 8 ms
7,156 KB
testcase_03 AC 100 ms
7,064 KB
testcase_04 AC 9 ms
7,072 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 11 ms
5,760 KB
testcase_09 AC 9 ms
5,888 KB
testcase_10 AC 11 ms
6,912 KB
testcase_11 AC 13 ms
6,400 KB
testcase_12 AC 14 ms
6,656 KB
testcase_13 AC 10 ms
6,400 KB
testcase_14 AC 12 ms
6,656 KB
testcase_15 AC 13 ms
6,944 KB
testcase_16 AC 8 ms
5,504 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 15 ms
6,656 KB
testcase_20 AC 15 ms
6,912 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 33 ms
5,376 KB
testcase_23 AC 14 ms
7,040 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 1 ms
5,376 KB
testcase_56 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <math.h>
#include <atcoder/modint.hpp>

using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;

int main() {
  ll n, m;
  cin >> n >> m;
  m = abs(m);
  mint ans = 0;
  vector<mint> f(n + 1, 1);
  for (ll i = 0; i < n; i++)
    f[i + 1] = f[i] * (i + 1);
  for (ll y = 0; y < n; y++) {
    ll x2 = y * y + m;
    ll x = max(ll(sqrt(x2) - 2), 0LL);
    while (x * x - y * y < m)
      x++;
    if (x * x - y * y != m)
      continue;
    if ((n - x - y) % 2)
      continue;
    if (n - x - y < 0)
      break;
    ll a = abs(n - x + y) / 2;
    ll b = abs(n - x - y) / 2;
    mint tmp = f[n] * f[n] / (f[a] * f[n - a] * f[b] * f[n - b]);
    if (y)
      tmp *= 2;
    if (x)
      tmp *= 2;
    ans += tmp;
  }
  ans /= mint(4).pow(n);
  cout << ans.val() << "\n";
  return 0;
}
0