結果

問題 No.800 四平方定理
コンテスト
ユーザー DrDrpilot
提出日時 2022-06-21 17:35:11
言語 PyPy3
(7.3.23 + ACL)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
MLE  
実行時間 -
コード長 334 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 72 ms
コンパイル使用メモリ 80,708 KB
実行使用メモリ 1,002,072 KB
最終ジャッジ日時 2026-09-16 15:38:44
合計ジャッジ時間 37,770 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 TLE * 1
other AC * 12 TLE * 15 MLE * 3
権限があれば一括ダウンロードができます

ソースコード

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