結果

問題 No.800 四平方定理
ユーザー stngstng
提出日時 2022-07-03 19:02:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 128,240 KB
最終ジャッジ日時 2024-11-29 14:53:57
合計ジャッジ時間 4,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,592 KB
testcase_01 AC 44 ms
63,904 KB
testcase_02 AC 45 ms
63,760 KB
testcase_03 AC 45 ms
63,260 KB
testcase_04 AC 43 ms
63,140 KB
testcase_05 AC 44 ms
63,096 KB
testcase_06 AC 45 ms
64,200 KB
testcase_07 AC 45 ms
63,004 KB
testcase_08 AC 46 ms
63,472 KB
testcase_09 AC 48 ms
63,784 KB
testcase_10 AC 104 ms
94,616 KB
testcase_11 AC 110 ms
98,360 KB
testcase_12 AC 118 ms
98,556 KB
testcase_13 AC 102 ms
96,696 KB
testcase_14 AC 111 ms
99,012 KB
testcase_15 AC 115 ms
98,492 KB
testcase_16 AC 112 ms
99,880 KB
testcase_17 AC 112 ms
99,236 KB
testcase_18 AC 121 ms
98,648 KB
testcase_19 AC 122 ms
99,324 KB
testcase_20 AC 35 ms
53,912 KB
testcase_21 AC 34 ms
52,940 KB
testcase_22 AC 122 ms
99,228 KB
testcase_23 AC 184 ms
128,240 KB
testcase_24 AC 164 ms
126,848 KB
testcase_25 AC 181 ms
126,316 KB
testcase_26 AC 34 ms
53,008 KB
testcase_27 AC 33 ms
53,072 KB
testcase_28 AC 165 ms
125,384 KB
testcase_29 AC 170 ms
127,656 KB
testcase_30 AC 168 ms
125,668 KB
testcase_31 AC 148 ms
121,056 KB
testcase_32 AC 168 ms
127,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())

yz = [0]*(2*(n**2)+1)

for i in range(1,n+1):
    for j in range(1,n+1):
        yz[i**2+j**2] += 1

ans = 0

for w in range(1,n+1):
    for x in range(1,n+1):
        tmp = w**2+d-x**2
        if tmp > 0 and tmp <= (2*(n**2)):
            ans += yz[tmp]

print(ans)
0