結果

問題 No.800 四平方定理
ユーザー heno239heno239
提出日時 2019-03-15 16:26:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 435 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 116,156 KB
最終ジャッジ日時 2024-07-01 19:57:51
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
99,072 KB
testcase_01 AC 63 ms
101,376 KB
testcase_02 AC 61 ms
100,352 KB
testcase_03 AC 62 ms
100,352 KB
testcase_04 AC 61 ms
100,480 KB
testcase_05 AC 61 ms
100,736 KB
testcase_06 AC 65 ms
101,376 KB
testcase_07 AC 64 ms
102,016 KB
testcase_08 AC 62 ms
99,584 KB
testcase_09 AC 62 ms
100,608 KB
testcase_10 AC 165 ms
114,560 KB
testcase_11 AC 167 ms
114,304 KB
testcase_12 AC 180 ms
114,432 KB
testcase_13 AC 148 ms
114,560 KB
testcase_14 AC 151 ms
114,560 KB
testcase_15 AC 182 ms
114,304 KB
testcase_16 AC 156 ms
114,432 KB
testcase_17 AC 153 ms
114,684 KB
testcase_18 AC 205 ms
115,104 KB
testcase_19 AC 206 ms
114,536 KB
testcase_20 AC 52 ms
91,648 KB
testcase_21 AC 52 ms
91,136 KB
testcase_22 AC 202 ms
114,304 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 52 ms
90,752 KB
testcase_27 AC 51 ms
91,136 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