結果

問題 No.800 四平方定理
ユーザー TakoKurageTakoKurage
提出日時 2019-03-17 23:39:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 81,644 KB
実行使用メモリ 203,444 KB
最終ジャッジ日時 2024-07-08 06:11:07
合計ジャッジ時間 5,512 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,668 KB
testcase_01 AC 46 ms
63,936 KB
testcase_02 AC 44 ms
64,268 KB
testcase_03 AC 44 ms
64,924 KB
testcase_04 AC 45 ms
63,364 KB
testcase_05 AC 44 ms
64,236 KB
testcase_06 AC 45 ms
64,440 KB
testcase_07 AC 46 ms
65,112 KB
testcase_08 AC 48 ms
69,064 KB
testcase_09 AC 45 ms
65,108 KB
testcase_10 AC 151 ms
132,444 KB
testcase_11 AC 157 ms
135,908 KB
testcase_12 AC 161 ms
139,856 KB
testcase_13 AC 133 ms
127,328 KB
testcase_14 AC 145 ms
131,960 KB
testcase_15 AC 168 ms
139,688 KB
testcase_16 AC 167 ms
133,084 KB
testcase_17 AC 151 ms
132,872 KB
testcase_18 AC 181 ms
148,180 KB
testcase_19 AC 179 ms
148,208 KB
testcase_20 AC 33 ms
52,068 KB
testcase_21 AC 32 ms
52,212 KB
testcase_22 AC 180 ms
148,564 KB
testcase_23 AC 288 ms
203,444 KB
testcase_24 AC 250 ms
187,548 KB
testcase_25 AC 290 ms
203,000 KB
testcase_26 AC 32 ms
52,672 KB
testcase_27 AC 44 ms
74,776 KB
testcase_28 AC 252 ms
186,628 KB
testcase_29 AC 271 ms
195,776 KB
testcase_30 AC 260 ms
186,964 KB
testcase_31 AC 229 ms
178,084 KB
testcase_32 AC 262 ms
189,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

count1 = [0] * (2 * N * N + 1 + 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 + 1 + 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