結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
80,896 KB
testcase_01 AC 106 ms
81,024 KB
testcase_02 AC 105 ms
80,768 KB
testcase_03 AC 101 ms
81,024 KB
testcase_04 AC 100 ms
80,896 KB
testcase_05 AC 101 ms
80,896 KB
testcase_06 AC 108 ms
81,024 KB
testcase_07 AC 105 ms
81,024 KB
testcase_08 AC 109 ms
81,024 KB
testcase_09 AC 104 ms
80,896 KB
testcase_10 AC 701 ms
80,896 KB
testcase_11 AC 753 ms
80,768 KB
testcase_12 AC 778 ms
80,896 KB
testcase_13 AC 676 ms
81,024 KB
testcase_14 AC 716 ms
80,896 KB
testcase_15 AC 796 ms
80,896 KB
testcase_16 AC 731 ms
81,024 KB
testcase_17 AC 727 ms
81,024 KB
testcase_18 AC 831 ms
81,024 KB
testcase_19 AC 835 ms
80,768 KB
testcase_20 AC 90 ms
80,896 KB
testcase_21 AC 90 ms
80,896 KB
testcase_22 AC 840 ms
81,024 KB
testcase_23 AC 1,400 ms
81,152 KB
testcase_24 AC 1,237 ms
80,916 KB
testcase_25 AC 1,397 ms
81,024 KB
testcase_26 AC 90 ms
80,896 KB
testcase_27 AC 91 ms
80,896 KB
testcase_28 AC 1,254 ms
81,152 KB
testcase_29 AC 1,339 ms
81,024 KB
testcase_30 AC 1,251 ms
81,152 KB
testcase_31 AC 1,164 ms
81,024 KB
testcase_32 AC 1,272 ms
81,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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