結果

問題 No.800 四平方定理
ユーザー takakintakakin
提出日時 2020-03-24 23:16:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,686 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 266,216 KB
最終ジャッジ日時 2024-06-10 09:29:25
合計ジャッジ時間 23,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,504 KB
testcase_01 AC 69 ms
75,136 KB
testcase_02 AC 65 ms
71,844 KB
testcase_03 AC 67 ms
74,240 KB
testcase_04 AC 63 ms
71,148 KB
testcase_05 AC 64 ms
73,100 KB
testcase_06 AC 72 ms
77,952 KB
testcase_07 AC 67 ms
74,368 KB
testcase_08 AC 72 ms
77,712 KB
testcase_09 AC 68 ms
75,136 KB
testcase_10 AC 675 ms
240,220 KB
testcase_11 AC 746 ms
241,744 KB
testcase_12 AC 746 ms
241,392 KB
testcase_13 AC 734 ms
240,816 KB
testcase_14 AC 746 ms
241,744 KB
testcase_15 AC 769 ms
241,544 KB
testcase_16 AC 748 ms
241,860 KB
testcase_17 AC 793 ms
241,708 KB
testcase_18 AC 736 ms
242,008 KB
testcase_19 AC 746 ms
242,088 KB
testcase_20 AC 42 ms
53,632 KB
testcase_21 AC 41 ms
53,376 KB
testcase_22 AC 797 ms
241,720 KB
testcase_23 AC 1,615 ms
266,208 KB
testcase_24 AC 1,565 ms
265,796 KB
testcase_25 AC 1,571 ms
259,332 KB
testcase_26 AC 39 ms
53,760 KB
testcase_27 AC 41 ms
53,632 KB
testcase_28 AC 1,581 ms
266,032 KB
testcase_29 AC 1,587 ms
266,152 KB
testcase_30 AC 1,632 ms
265,736 KB
testcase_31 AC 1,426 ms
260,916 KB
testcase_32 AC 1,686 ms
266,216 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):
    ans+=D[j**2-i**2+d]
print(ans)
0