結果

問題 No.800 四平方定理
ユーザー TakoKurageTakoKurage
提出日時 2019-03-17 23:37:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 434 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 204,036 KB
最終ジャッジ日時 2024-07-08 05:56:04
合計ジャッジ時間 5,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,616 KB
testcase_01 AC 44 ms
64,664 KB
testcase_02 AC 43 ms
63,720 KB
testcase_03 AC 42 ms
64,840 KB
testcase_04 AC 45 ms
63,736 KB
testcase_05 AC 42 ms
63,304 KB
testcase_06 AC 44 ms
63,916 KB
testcase_07 AC 46 ms
66,296 KB
testcase_08 AC 48 ms
69,316 KB
testcase_09 AC 43 ms
64,804 KB
testcase_10 AC 129 ms
132,524 KB
testcase_11 AC 137 ms
136,288 KB
testcase_12 AC 138 ms
140,056 KB
testcase_13 AC 116 ms
127,356 KB
testcase_14 RE -
testcase_15 AC 143 ms
140,176 KB
testcase_16 RE -
testcase_17 AC 124 ms
133,164 KB
testcase_18 AC 150 ms
148,544 KB
testcase_19 AC 153 ms
149,292 KB
testcase_20 AC 32 ms
52,648 KB
testcase_21 AC 31 ms
52,620 KB
testcase_22 AC 148 ms
149,776 KB
testcase_23 AC 232 ms
204,036 KB
testcase_24 RE -
testcase_25 AC 245 ms
203,704 KB
testcase_26 RE -
testcase_27 AC 43 ms
74,628 KB
testcase_28 AC 208 ms
189,044 KB
testcase_29 AC 216 ms
195,996 KB
testcase_30 AC 205 ms
187,132 KB
testcase_31 AC 186 ms
178,812 KB
testcase_32 AC 217 ms
190,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = [int(i) for i in input().split()]

count1 = [0] * (2 * N * N + D)
for x in range(1, N + 1):
    for y in range(1, N + 1):
        count1[x * x + y * y] += 1

count2 = [0] * (2 * N * N + D)
for w in range(1, N + 1):
    for z in range(1, N + 1):
        temp = w * w - z * z + D
        if 0 <= temp:
            count2[w * w - z * z + D] += 1

result = 0
for c1, c2 in zip(count1, count2):
    result += c1 * c2

print(result)
0