結果

問題 No.800 四平方定理
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-03-18 00:24:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 449 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 303,920 KB
最終ジャッジ日時 2024-07-08 07:46:32
合計ジャッジ時間 20,945 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,880 KB
testcase_01 AC 71 ms
76,288 KB
testcase_02 AC 59 ms
72,720 KB
testcase_03 AC 59 ms
74,848 KB
testcase_04 AC 56 ms
71,336 KB
testcase_05 AC 57 ms
74,008 KB
testcase_06 AC 65 ms
78,960 KB
testcase_07 AC 61 ms
73,748 KB
testcase_08 AC 65 ms
77,748 KB
testcase_09 AC 62 ms
76,104 KB
testcase_10 AC 882 ms
251,624 KB
testcase_11 AC 973 ms
260,488 KB
testcase_12 AC 935 ms
259,972 KB
testcase_13 AC 912 ms
259,020 KB
testcase_14 AC 960 ms
260,236 KB
testcase_15 AC 981 ms
259,840 KB
testcase_16 AC 994 ms
246,856 KB
testcase_17 AC 995 ms
246,520 KB
testcase_18 AC 969 ms
246,508 KB
testcase_19 AC 986 ms
246,384 KB
testcase_20 AC 37 ms
54,028 KB
testcase_21 AC 35 ms
53,944 KB
testcase_22 AC 988 ms
246,648 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 36 ms
54,176 KB
testcase_27 AC 37 ms
54,784 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,926 ms
288,476 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import defaultdict 
cnt = defaultdict(int)


lst = [ i**2 for i in range(1, N+1)]

for i in range(N):
    for j in range(N):
        # if i == j:
        cnt[ lst[i] + lst[j] ] += 1
        # else:
        #     cnt[ lst[i] + lst[j] ] += 2

ans = 0

for i in range(N):
    for j in range(N):
        x,y = lst[i], lst[j]
        # if i == j : 
        ans += cnt[ y+D - x ]

print(ans)
            
0