結果

問題 No.800 四平方定理
ユーザー heno239heno239
提出日時 2019-03-15 16:23:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 433 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-07-01 19:55:13
合計ジャッジ時間 17,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
49,792 KB
testcase_01 AC 79 ms
49,792 KB
testcase_02 AC 73 ms
49,792 KB
testcase_03 AC 75 ms
49,792 KB
testcase_04 AC 74 ms
49,792 KB
testcase_05 AC 74 ms
49,792 KB
testcase_06 AC 82 ms
49,792 KB
testcase_07 AC 79 ms
49,792 KB
testcase_08 AC 85 ms
49,792 KB
testcase_09 AC 79 ms
49,792 KB
testcase_10 AC 720 ms
49,792 KB
testcase_11 AC 799 ms
49,920 KB
testcase_12 AC 812 ms
49,920 KB
testcase_13 AC 698 ms
49,792 KB
testcase_14 AC 751 ms
49,792 KB
testcase_15 AC 821 ms
49,920 KB
testcase_16 AC 758 ms
49,792 KB
testcase_17 AC 761 ms
49,792 KB
testcase_18 AC 856 ms
49,792 KB
testcase_19 AC 873 ms
49,920 KB
testcase_20 AC 62 ms
49,792 KB
testcase_21 AC 62 ms
49,792 KB
testcase_22 AC 859 ms
49,792 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 62 ms
49,792 KB
testcase_27 AC 63 ms
49,920 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

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]*5000001
  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):
          if p[i]+p[j]<=5000000:
            ans+=2*cnt[p[i]+p[j]]
  print(ans)
solve()
0