結果

問題 No.800 四平方定理
ユーザー mkawa2mkawa2
提出日時 2021-02-13 17:02:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 306 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 263,196 KB
最終ジャッジ日時 2024-07-20 20:09:45
合計ジャッジ時間 8,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
80,512 KB
testcase_01 AC 88 ms
83,840 KB
testcase_02 AC 90 ms
77,952 KB
testcase_03 AC 91 ms
81,408 KB
testcase_04 AC 90 ms
77,952 KB
testcase_05 AC 80 ms
80,384 KB
testcase_06 AC 93 ms
87,680 KB
testcase_07 AC 83 ms
81,280 KB
testcase_08 AC 91 ms
86,656 KB
testcase_09 AC 90 ms
84,224 KB
testcase_10 AC 1,484 ms
263,196 KB
testcase_11 AC 1,719 ms
255,264 KB
testcase_12 AC 1,715 ms
254,772 KB
testcase_13 AC 1,569 ms
252,640 KB
testcase_14 AC 1,880 ms
255,760 KB
testcase_15 AC 1,756 ms
255,076 KB
testcase_16 AC 1,738 ms
256,036 KB
testcase_17 AC 1,757 ms
255,680 KB
testcase_18 AC 1,726 ms
255,328 KB
testcase_19 AC 1,699 ms
255,360 KB
testcase_20 AC 39 ms
53,504 KB
testcase_21 AC 44 ms
54,144 KB
testcase_22 AC 1,709 ms
255,820 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def MI(): return map(int, sys.stdin.buffer.readline().split())

from collections import defaultdict

n,d=MI()
l,r=defaultdict(int),defaultdict(int)

for x in range(1,n+1):
    for y in range(1,n+1):
        l[x*x+y*y]+=1
        r[x*x-y*y+d]+=1

ans=sum(v*r[k] for k,v in l.items())
print(ans)
0