結果

問題 No.800 四平方定理
ユーザー lumeffluxlumefflux
提出日時 2019-03-17 23:37:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 385 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 147,220 KB
最終ジャッジ日時 2024-07-08 05:55:59
合計ジャッジ時間 4,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
141,824 KB
testcase_01 AC 89 ms
141,952 KB
testcase_02 AC 96 ms
142,208 KB
testcase_03 AC 92 ms
142,080 KB
testcase_04 AC 89 ms
142,336 KB
testcase_05 AC 94 ms
142,208 KB
testcase_06 AC 88 ms
142,208 KB
testcase_07 AC 91 ms
141,696 KB
testcase_08 AC 89 ms
141,696 KB
testcase_09 AC 89 ms
142,200 KB
testcase_10 AC 135 ms
144,512 KB
testcase_11 AC 140 ms
144,384 KB
testcase_12 AC 146 ms
144,768 KB
testcase_13 AC 138 ms
144,384 KB
testcase_14 AC 145 ms
144,256 KB
testcase_15 AC 147 ms
144,640 KB
testcase_16 AC 150 ms
144,256 KB
testcase_17 AC 146 ms
144,128 KB
testcase_18 AC 151 ms
144,128 KB
testcase_19 AC 150 ms
144,128 KB
testcase_20 AC 82 ms
137,088 KB
testcase_21 AC 82 ms
137,344 KB
testcase_22 AC 150 ms
144,256 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 83 ms
137,344 KB
testcase_27 AC 83 ms
137,344 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N, D = map(int, input().split())
r1 = [0] * 5000000
r2 = [0] * 5000000
ans = 0
for x in range(1, N + 1):
    for y in range(1, N + 1):
        r1[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 > 1:
            r2[w**2 - z**2 + D] += 1
for i in range(5000000):
    ans += r1[i] * r2[i]
print(ans)
0