結果

問題 No.800 四平方定理
ユーザー hazohelhazohel
提出日時 2019-03-20 14:54:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 190,208 KB
最終ジャッジ日時 2024-09-19 00:40:44
合計ジャッジ時間 7,973 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
186,496 KB
testcase_01 AC 127 ms
187,392 KB
testcase_02 AC 129 ms
187,884 KB
testcase_03 AC 131 ms
187,392 KB
testcase_04 AC 122 ms
187,648 KB
testcase_05 AC 126 ms
187,392 KB
testcase_06 AC 122 ms
187,648 KB
testcase_07 AC 125 ms
187,196 KB
testcase_08 AC 126 ms
187,008 KB
testcase_09 AC 124 ms
187,776 KB
testcase_10 AC 192 ms
189,056 KB
testcase_11 AC 201 ms
189,952 KB
testcase_12 AC 201 ms
189,440 KB
testcase_13 AC 192 ms
189,696 KB
testcase_14 AC 205 ms
189,312 KB
testcase_15 AC 214 ms
189,824 KB
testcase_16 AC 218 ms
189,440 KB
testcase_17 AC 204 ms
189,312 KB
testcase_18 AC 209 ms
189,824 KB
testcase_19 AC 215 ms
189,312 KB
testcase_20 AC 111 ms
182,272 KB
testcase_21 AC 109 ms
182,272 KB
testcase_22 AC 208 ms
189,952 KB
testcase_23 AC 288 ms
189,824 KB
testcase_24 AC 282 ms
189,184 KB
testcase_25 AC 289 ms
190,208 KB
testcase_26 AC 116 ms
182,400 KB
testcase_27 AC 124 ms
183,040 KB
testcase_28 AC 280 ms
189,568 KB
testcase_29 AC 300 ms
189,824 KB
testcase_30 AC 290 ms
189,824 KB
testcase_31 AC 272 ms
189,696 KB
testcase_32 AC 287 ms
189,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 8000001
left = [0]*INF
right = [0]*INF
N, D = map(int, input().split())

for x in range(1, N+1):
    for y in range(1, N+1):
        left[x**2 + y**2] += 1
for z in range(1, N+1):
    for w in range(1, N+1):
        if w**2 - z**2 + D > 0:
            right[w**2 - z**2 + D] += 1
ans = 0;
for i in range(INF):
    ans += left[i] * right[i]
print(ans)
0