結果

問題 No.800 四平方定理
ユーザー neterukunneterukun
提出日時 2019-06-10 07:22:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 965 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 233,020 KB
最終ジャッジ日時 2024-10-06 00:30:22
合計ジャッジ時間 13,498 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,384 KB
testcase_01 AC 58 ms
66,688 KB
testcase_02 AC 56 ms
66,688 KB
testcase_03 AC 56 ms
66,304 KB
testcase_04 AC 54 ms
65,792 KB
testcase_05 AC 55 ms
66,048 KB
testcase_06 AC 60 ms
67,584 KB
testcase_07 AC 57 ms
66,560 KB
testcase_08 AC 58 ms
67,456 KB
testcase_09 AC 59 ms
68,352 KB
testcase_10 AC 362 ms
165,248 KB
testcase_11 AC 386 ms
176,012 KB
testcase_12 AC 419 ms
182,144 KB
testcase_13 AC 419 ms
175,744 KB
testcase_14 AC 445 ms
181,888 KB
testcase_15 AC 438 ms
181,920 KB
testcase_16 AC 439 ms
182,056 KB
testcase_17 AC 438 ms
181,856 KB
testcase_18 AC 412 ms
181,980 KB
testcase_19 AC 395 ms
176,140 KB
testcase_20 AC 35 ms
52,368 KB
testcase_21 AC 35 ms
52,976 KB
testcase_22 AC 457 ms
182,044 KB
testcase_23 AC 878 ms
232,892 KB
testcase_24 AC 856 ms
233,008 KB
testcase_25 AC 965 ms
232,740 KB
testcase_26 AC 36 ms
52,748 KB
testcase_27 AC 36 ms
52,364 KB
testcase_28 AC 784 ms
233,020 KB
testcase_29 AC 756 ms
232,748 KB
testcase_30 AC 807 ms
232,920 KB
testcase_31 AC 684 ms
233,016 KB
testcase_32 AC 820 ms
232,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())

li1 = {}
for x in range(1, n + 1):
    for y in range(x + 1, n + 1):
        if x**2 + y**2 not in li1:
            li1[x**2 + y**2] = 2
        else:
            li1[x**2 + y**2] += 2
for x in range(1, n + 1):
    if x**2 + x**2 not in li1:
        li1[x**2 + x**2] = 1
    else:
        li1[x**2 + x**2] += 1

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