結果

問題 No.800 四平方定理
ユーザー tobusakanatobusakana
提出日時 2022-10-02 17:17:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 446 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 348,916 KB
最終ジャッジ日時 2024-06-07 10:55:17
合計ジャッジ時間 22,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
77,312 KB
testcase_01 AC 79 ms
77,312 KB
testcase_02 AC 72 ms
74,880 KB
testcase_03 AC 74 ms
75,392 KB
testcase_04 AC 71 ms
73,984 KB
testcase_05 AC 74 ms
75,392 KB
testcase_06 AC 82 ms
80,896 KB
testcase_07 AC 77 ms
76,288 KB
testcase_08 AC 83 ms
80,256 KB
testcase_09 AC 80 ms
78,460 KB
testcase_10 AC 1,420 ms
243,200 KB
testcase_11 AC 1,588 ms
243,956 KB
testcase_12 AC 1,587 ms
243,508 KB
testcase_13 AC 1,487 ms
236,144 KB
testcase_14 AC 1,602 ms
246,384 KB
testcase_15 AC 1,585 ms
243,408 KB
testcase_16 AC 1,597 ms
246,660 KB
testcase_17 AC 1,612 ms
246,300 KB
testcase_18 AC 1,580 ms
246,664 KB
testcase_19 AC 1,589 ms
246,716 KB
testcase_20 AC 42 ms
53,504 KB
testcase_21 AC 41 ms
53,376 KB
testcase_22 AC 1,612 ms
246,552 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

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):
        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