結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 23:07:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 137,984 KB
最終ジャッジ日時 2024-07-01 21:31:38
合計ジャッジ時間 7,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
121,472 KB
testcase_01 AC 100 ms
122,112 KB
testcase_02 AC 100 ms
122,112 KB
testcase_03 AC 99 ms
121,856 KB
testcase_04 AC 101 ms
121,856 KB
testcase_05 AC 99 ms
122,368 KB
testcase_06 AC 100 ms
122,368 KB
testcase_07 AC 106 ms
125,824 KB
testcase_08 AC 99 ms
120,960 KB
testcase_09 AC 100 ms
122,240 KB
testcase_10 AC 193 ms
137,856 KB
testcase_11 AC 193 ms
137,216 KB
testcase_12 AC 203 ms
137,472 KB
testcase_13 AC 177 ms
137,216 KB
testcase_14 AC 180 ms
137,344 KB
testcase_15 AC 204 ms
137,088 KB
testcase_16 AC 185 ms
137,472 KB
testcase_17 AC 187 ms
137,088 KB
testcase_18 AC 227 ms
137,600 KB
testcase_19 AC 226 ms
137,600 KB
testcase_20 AC 91 ms
114,304 KB
testcase_21 AC 90 ms
114,176 KB
testcase_22 AC 224 ms
137,856 KB
testcase_23 AC 314 ms
137,600 KB
testcase_24 AC 261 ms
137,600 KB
testcase_25 AC 319 ms
137,984 KB
testcase_26 AC 91 ms
113,920 KB
testcase_27 AC 91 ms
114,176 KB
testcase_28 AC 272 ms
137,856 KB
testcase_29 AC 297 ms
137,472 KB
testcase_30 AC 265 ms
136,960 KB
testcase_31 AC 254 ms
137,216 KB
testcase_32 AC 274 ms
137,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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