結果

問題 No.800 四平方定理
ユーザー DrDrpilotDrDrpilot
提出日時 2022-06-21 17:44:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 190,080 KB
最終ジャッジ日時 2024-10-14 11:51:49
合計ジャッジ時間 7,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,616 KB
testcase_01 AC 56 ms
65,152 KB
testcase_02 AC 58 ms
64,640 KB
testcase_03 AC 56 ms
64,768 KB
testcase_04 AC 56 ms
64,640 KB
testcase_05 AC 55 ms
64,512 KB
testcase_06 AC 57 ms
66,048 KB
testcase_07 AC 60 ms
65,716 KB
testcase_08 AC 53 ms
64,492 KB
testcase_09 AC 57 ms
65,024 KB
testcase_10 AC 195 ms
126,464 KB
testcase_11 AC 210 ms
134,016 KB
testcase_12 AC 210 ms
133,376 KB
testcase_13 AC 177 ms
129,024 KB
testcase_14 AC 180 ms
133,504 KB
testcase_15 AC 208 ms
134,144 KB
testcase_16 AC 183 ms
134,016 KB
testcase_17 AC 184 ms
134,400 KB
testcase_18 AC 221 ms
134,784 KB
testcase_19 AC 222 ms
134,784 KB
testcase_20 AC 43 ms
53,248 KB
testcase_21 AC 43 ms
53,376 KB
testcase_22 AC 226 ms
135,400 KB
testcase_23 AC 339 ms
190,080 KB
testcase_24 AC 287 ms
189,440 KB
testcase_25 AC 334 ms
189,696 KB
testcase_26 AC 41 ms
53,368 KB
testcase_27 AC 42 ms
53,632 KB
testcase_28 AC 304 ms
188,800 KB
testcase_29 AC 321 ms
189,312 KB
testcase_30 AC 306 ms
188,928 KB
testcase_31 AC 280 ms
179,584 KB
testcase_32 AC 321 ms
189,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,d=map(int,input().split())
m=2*(n**2)
cnt1=[0]*(m+1)
cnt2=[0]*(m+1)
for x in range(1,n+1):
    for y in range(1,n+1):
        cnt1[x**2+y**2]+=1
        if 0<=x**2-y**2+d<=m:
            cnt2[x**2-y**2+d]+=1
ans=0
for i in range(1,m+1):
    ans+=cnt1[i]*cnt2[i]
print(ans)
0