結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
80,896 KB
testcase_01 AC 106 ms
80,768 KB
testcase_02 AC 97 ms
81,024 KB
testcase_03 AC 98 ms
80,768 KB
testcase_04 AC 96 ms
80,768 KB
testcase_05 AC 97 ms
80,768 KB
testcase_06 AC 103 ms
81,024 KB
testcase_07 AC 102 ms
80,768 KB
testcase_08 AC 106 ms
80,768 KB
testcase_09 AC 100 ms
81,024 KB
testcase_10 AC 688 ms
80,768 KB
testcase_11 AC 747 ms
80,896 KB
testcase_12 AC 761 ms
80,896 KB
testcase_13 AC 666 ms
81,024 KB
testcase_14 AC 713 ms
80,768 KB
testcase_15 AC 771 ms
80,768 KB
testcase_16 AC 720 ms
80,768 KB
testcase_17 AC 722 ms
80,896 KB
testcase_18 AC 835 ms
80,896 KB
testcase_19 AC 817 ms
81,024 KB
testcase_20 AC 86 ms
80,896 KB
testcase_21 AC 87 ms
80,768 KB
testcase_22 AC 839 ms
80,768 KB
testcase_23 AC 1,363 ms
80,896 KB
testcase_24 AC 1,251 ms
80,896 KB
testcase_25 AC 1,361 ms
81,024 KB
testcase_26 AC 86 ms
80,768 KB
testcase_27 AC 86 ms
80,896 KB
testcase_28 AC 1,281 ms
80,896 KB
testcase_29 AC 1,323 ms
80,896 KB
testcase_30 AC 1,255 ms
80,896 KB
testcase_31 AC 1,143 ms
80,896 KB
testcase_32 AC 1,257 ms
80,896 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