結果

問題 No.800 四平方定理
ユーザー hogeandfuga
提出日時 2019-03-17 22:38:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 326 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 177,500 KB
最終ジャッジ日時 2024-07-08 00:50:16
合計ジャッジ時間 25,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 TLE * 1
other AC * 11 TLE * 10 -- * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n, d = map(int, input().split())
a = []
for i in range(1, n+1):
    a.append(i**2)

cnt = defaultdict(int)
for x in a:
    for y in a:
        cnt[x+y] += 1

ans = 0
for w in a:
    for z in a:
        if w + d <= z:
            break
        else:
            ans += cnt[w+d-z]
print(ans)
0