結果

問題 No.800 四平方定理
ユーザー tobusakanatobusakana
提出日時 2022-10-02 17:19:59
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 514 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 303,828 KB
最終ジャッジ日時 2024-06-07 10:57:42
合計ジャッジ時間 30,558 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
70,144 KB
testcase_01 AC 75 ms
74,624 KB
testcase_02 AC 71 ms
73,472 KB
testcase_03 AC 72 ms
73,472 KB
testcase_04 AC 70 ms
73,088 KB
testcase_05 AC 71 ms
74,468 KB
testcase_06 AC 78 ms
76,672 KB
testcase_07 AC 78 ms
77,184 KB
testcase_08 AC 86 ms
81,260 KB
testcase_09 AC 77 ms
75,520 KB
testcase_10 AC 933 ms
222,208 KB
testcase_11 AC 992 ms
215,220 KB
testcase_12 AC 1,051 ms
212,232 KB
testcase_13 AC 850 ms
193,564 KB
testcase_14 AC 929 ms
215,668 KB
testcase_15 AC 1,040 ms
212,332 KB
testcase_16 AC 927 ms
215,732 KB
testcase_17 AC 924 ms
215,376 KB
testcase_18 AC 1,150 ms
215,644 KB
testcase_19 AC 1,134 ms
215,732 KB
testcase_20 AC 40 ms
53,376 KB
testcase_21 AC 41 ms
53,760 KB
testcase_22 AC 1,462 ms
215,732 KB
testcase_23 TLE -
testcase_24 AC 1,912 ms
266,956 KB
testcase_25 TLE -
testcase_26 AC 41 ms
53,888 KB
testcase_27 AC 40 ms
53,120 KB
testcase_28 AC 1,809 ms
266,576 KB
testcase_29 TLE -
testcase_30 AC 1,932 ms
266,704 KB
testcase_31 AC 1,709 ms
259,104 KB
testcase_32 AC 1,978 ms
266,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())

from collections import defaultdict
left = defaultdict(int)
for x in range(1, N + 1):
    for y in range(1, N + 1):
        left[x**2 + y**2] += 1
        
right = defaultdict(int)
for w in range(1, N + 1):
    for z in range(1, N + 1):
        val = w**2 - z**2 + D
        if val < 0:
            break
        right[w**2 - z**2 + D] += 1
        
ans = 0
for key, value in left.items():
    if key in right:
        ans += right[key] * value
        
print(ans)
        
        
0