結果

問題 No.800 四平方定理
ユーザー neterukunneterukun
提出日時 2019-03-18 22:28:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,613 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 266,056 KB
最終ジャッジ日時 2024-07-19 06:54:27
合計ジャッジ時間 20,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
68,992 KB
testcase_01 AC 62 ms
75,008 KB
testcase_02 AC 58 ms
71,424 KB
testcase_03 AC 64 ms
73,856 KB
testcase_04 AC 61 ms
70,912 KB
testcase_05 AC 59 ms
73,088 KB
testcase_06 AC 68 ms
77,312 KB
testcase_07 AC 66 ms
74,240 KB
testcase_08 AC 71 ms
77,696 KB
testcase_09 AC 68 ms
74,880 KB
testcase_10 AC 637 ms
239,952 KB
testcase_11 AC 618 ms
241,584 KB
testcase_12 AC 625 ms
241,240 KB
testcase_13 AC 627 ms
240,268 KB
testcase_14 AC 644 ms
241,472 KB
testcase_15 AC 655 ms
241,148 KB
testcase_16 AC 698 ms
241,496 KB
testcase_17 AC 667 ms
241,624 KB
testcase_18 AC 665 ms
241,280 KB
testcase_19 AC 614 ms
241,492 KB
testcase_20 AC 36 ms
54,016 KB
testcase_21 AC 37 ms
53,120 KB
testcase_22 AC 636 ms
241,840 KB
testcase_23 AC 1,389 ms
266,056 KB
testcase_24 AC 1,404 ms
264,188 KB
testcase_25 AC 1,613 ms
259,048 KB
testcase_26 AC 43 ms
53,632 KB
testcase_27 AC 41 ms
53,504 KB
testcase_28 AC 1,328 ms
265,484 KB
testcase_29 AC 1,385 ms
265,696 KB
testcase_30 AC 1,345 ms
265,836 KB
testcase_31 AC 1,172 ms
260,756 KB
testcase_32 AC 1,404 ms
265,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,d = map(int,input().split())

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

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


ans = 0
for i in range(1,n+1):
    for j in range(1,n+1):
        ans += half[d+i**2-j**2]
print(ans)
0