結果

問題 No.800 四平方定理
ユーザー H20H20
提出日時 2020-11-19 10:03:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 126,132 KB
最終ジャッジ日時 2024-07-23 09:48:48
合計ジャッジ時間 5,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
122,452 KB
testcase_01 AC 68 ms
123,936 KB
testcase_02 AC 67 ms
123,632 KB
testcase_03 AC 68 ms
123,660 KB
testcase_04 AC 70 ms
124,340 KB
testcase_05 AC 68 ms
123,316 KB
testcase_06 AC 69 ms
123,068 KB
testcase_07 AC 69 ms
123,752 KB
testcase_08 AC 67 ms
123,356 KB
testcase_09 AC 68 ms
123,916 KB
testcase_10 AC 141 ms
124,792 KB
testcase_11 AC 132 ms
125,124 KB
testcase_12 AC 136 ms
124,808 KB
testcase_13 AC 135 ms
124,532 KB
testcase_14 AC 134 ms
125,740 KB
testcase_15 AC 135 ms
124,676 KB
testcase_16 AC 129 ms
125,048 KB
testcase_17 AC 124 ms
125,780 KB
testcase_18 AC 164 ms
125,384 KB
testcase_19 AC 163 ms
124,196 KB
testcase_20 AC 57 ms
115,552 KB
testcase_21 AC 58 ms
114,912 KB
testcase_22 AC 153 ms
125,820 KB
testcase_23 AC 226 ms
124,904 KB
testcase_24 AC 185 ms
125,496 KB
testcase_25 AC 220 ms
124,900 KB
testcase_26 AC 58 ms
115,096 KB
testcase_27 AC 56 ms
115,688 KB
testcase_28 AC 199 ms
125,440 KB
testcase_29 AC 213 ms
126,132 KB
testcase_30 AC 196 ms
124,752 KB
testcase_31 AC 201 ms
125,872 KB
testcase_32 AC 221 ms
125,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int, input().split())
Square = []
P = [0]*(2000**2*2+5)

for i in range(N+1):
    Square.append(i**2)
for i in range(1,N+1):
    for j in range(1,N+1):
        P[Square[i]+Square[j]]+=1
ans = 0
for i in range(1,N+1):
    for j in range(1,N+1):
        temp = Square[i]-Square[j]+D
        if temp >=0:
            ans += P[temp]

print(ans)    
0