結果

問題 No.800 四平方定理
コンテスト
ユーザー DrDrpilot
提出日時 2022-06-21 17:35:11
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
MLE  
実行時間 -
コード長 334 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 164 ms
コンパイル使用メモリ 85,568 KB
実行使用メモリ 830,628 KB
最終ジャッジ日時 2026-05-01 21:11:25
合計ジャッジ時間 27,694 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 MLE * 1
other AC * 10 TLE * 6 MLE * 5 -- * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from collections import defaultdict
n,d=map(int,input().split())
cnt1=defaultdict(int)
cnt2=defaultdict(int)
for x in range(1,n+1):
    for y in range(1,n+1):
        cnt1[x**2+y**2]+=1
for z in range(1,n+1):
    for w in range(1,n+1):
        cnt2[w**2-z**2+d]+=1
ans=0
for i in range(1,2*n**2+1):
    ans+=cnt1[i]*cnt2[i]
print(ans)
0