結果

問題 No.800 四平方定理
ユーザー heno239heno239
提出日時 2019-03-15 16:16:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,774 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-07-01 19:51:14
合計ジャッジ時間 26,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
81,024 KB
testcase_01 AC 110 ms
80,768 KB
testcase_02 AC 103 ms
80,896 KB
testcase_03 AC 105 ms
80,896 KB
testcase_04 AC 102 ms
80,896 KB
testcase_05 AC 103 ms
80,896 KB
testcase_06 AC 113 ms
81,024 KB
testcase_07 AC 109 ms
81,024 KB
testcase_08 AC 117 ms
81,024 KB
testcase_09 AC 109 ms
81,024 KB
testcase_10 AC 876 ms
81,024 KB
testcase_11 AC 940 ms
80,896 KB
testcase_12 AC 972 ms
80,768 KB
testcase_13 AC 853 ms
80,896 KB
testcase_14 AC 926 ms
81,024 KB
testcase_15 AC 987 ms
81,024 KB
testcase_16 AC 928 ms
81,024 KB
testcase_17 AC 931 ms
80,896 KB
testcase_18 AC 1,023 ms
80,896 KB
testcase_19 AC 1,017 ms
80,896 KB
testcase_20 AC 90 ms
81,024 KB
testcase_21 AC 90 ms
81,024 KB
testcase_22 AC 1,036 ms
80,896 KB
testcase_23 AC 1,774 ms
80,896 KB
testcase_24 AC 1,618 ms
81,024 KB
testcase_25 AC 1,733 ms
81,024 KB
testcase_26 AC 90 ms
80,896 KB
testcase_27 AC 89 ms
80,896 KB
testcase_28 AC 1,602 ms
81,024 KB
testcase_29 AC 1,711 ms
80,896 KB
testcase_30 AC 1,621 ms
80,896 KB
testcase_31 AC 1,522 ms
81,024 KB
testcase_32 AC 1,621 ms
80,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  n,d=map(int,input().split())
  cnt=[0]*9000001
  for i in range(1,n+1):
      for j in range(1,n+1):
          s=i*i-j*j+d
          if s>=0:
              cnt[s]+=1
  ans=0
  for i in range(1,n+1):
    ans+=cnt[2*i*i]
  for i in range(1,n+1):
      for j in range(i+1,n+1):
        ans+=2*cnt[i*i+j*j]
  print(ans)
solve()
0