結果

問題 No.800 四平方定理
ユーザー takakintakakin
提出日時 2020-03-24 23:19:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,521 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 267,456 KB
最終ジャッジ日時 2024-06-10 09:30:37
合計ジャッジ時間 20,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,024 KB
testcase_01 AC 72 ms
73,556 KB
testcase_02 AC 69 ms
70,632 KB
testcase_03 AC 72 ms
71,608 KB
testcase_04 AC 66 ms
71,192 KB
testcase_05 AC 69 ms
72,420 KB
testcase_06 AC 73 ms
75,000 KB
testcase_07 AC 75 ms
75,232 KB
testcase_08 AC 82 ms
78,944 KB
testcase_09 AC 73 ms
73,240 KB
testcase_10 AC 686 ms
215,836 KB
testcase_11 AC 721 ms
216,428 KB
testcase_12 AC 707 ms
237,756 KB
testcase_13 AC 560 ms
180,196 KB
testcase_14 AC 595 ms
216,528 KB
testcase_15 AC 714 ms
237,852 KB
testcase_16 AC 595 ms
216,396 KB
testcase_17 AC 631 ms
216,428 KB
testcase_18 AC 793 ms
241,872 KB
testcase_19 AC 795 ms
241,720 KB
testcase_20 AC 41 ms
54,204 KB
testcase_21 AC 41 ms
54,928 KB
testcase_22 AC 775 ms
237,812 KB
testcase_23 AC 1,478 ms
258,944 KB
testcase_24 AC 1,521 ms
259,076 KB
testcase_25 AC 1,388 ms
259,108 KB
testcase_26 AC 40 ms
54,220 KB
testcase_27 AC 42 ms
54,780 KB
testcase_28 AC 1,143 ms
259,032 KB
testcase_29 AC 1,249 ms
259,184 KB
testcase_30 AC 1,305 ms
259,136 KB
testcase_31 AC 1,112 ms
267,456 KB
testcase_32 AC 1,276 ms
259,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,d=map(int,input().split())
import collections
D=collections.defaultdict(int)
for i in range(1,n+1):
  D[2*(i**2)]+=1
  for j in range(i+1,n+1):
    D[i**2+j**2]+=2
ans=0
for i in range(1,n+1):
  for j in range(1,n+1):
    a=j**2-i**2+d
    if a>1:
      ans+=D[j**2-i**2+d]
print(ans)
0