結果

問題 No.800 四平方定理
ユーザー 2nanoda series2nanoda series
提出日時 2022-09-03 11:16:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 164,992 KB
最終ジャッジ日時 2024-11-17 00:05:52
合計ジャッジ時間 6,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,824 KB
testcase_01 AC 54 ms
63,872 KB
testcase_02 AC 52 ms
62,848 KB
testcase_03 AC 53 ms
63,872 KB
testcase_04 AC 51 ms
64,000 KB
testcase_05 AC 56 ms
63,488 KB
testcase_06 AC 53 ms
64,000 KB
testcase_07 AC 61 ms
64,128 KB
testcase_08 AC 54 ms
65,792 KB
testcase_09 AC 54 ms
63,488 KB
testcase_10 AC 157 ms
113,152 KB
testcase_11 AC 162 ms
117,504 KB
testcase_12 AC 174 ms
119,196 KB
testcase_13 AC 143 ms
112,000 KB
testcase_14 AC 151 ms
115,712 KB
testcase_15 AC 169 ms
119,552 KB
testcase_16 AC 153 ms
115,840 KB
testcase_17 AC 154 ms
115,840 KB
testcase_18 AC 186 ms
123,856 KB
testcase_19 AC 186 ms
123,852 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 183 ms
123,776 KB
testcase_23 AC 279 ms
164,992 KB
testcase_24 AC 244 ms
157,312 KB
testcase_25 AC 274 ms
164,992 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 46 ms
64,768 KB
testcase_28 AC 242 ms
156,288 KB
testcase_29 AC 261 ms
160,896 KB
testcase_30 AC 239 ms
156,712 KB
testcase_31 AC 230 ms
149,632 KB
testcase_32 AC 245 ms
157,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
n,d=map(int,input().split())


# x*x + y*y = w*w + D - z*z
left=[0 for i in range(n*n+n*n+1)]
for x in range(1,n+1):
    for y in range(1,n+1):
        left[x*x+y*y]+=1

right=[0 for i in range(0,n*n-0+d+1)]# 0未満は切り捨て
for w in range(1,n+1):
    for z in range(1,n+1):
        if w*w-z*z+d>=0:
            right[w*w-z*z+d]+=1
result=0
for i in range(min(n*n+n*n+1,n*n-0+d+1)):
    result+=(left[i]*right[i])
# print(left,right)
print(result)
0