結果

問題 No.800 四平方定理
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-03-18 09:40:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 129,368 KB
最終ジャッジ日時 2024-07-17 23:27:53
合計ジャッジ時間 6,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
124,032 KB
testcase_01 AC 86 ms
124,928 KB
testcase_02 AC 74 ms
125,168 KB
testcase_03 AC 75 ms
125,056 KB
testcase_04 AC 75 ms
125,056 KB
testcase_05 AC 76 ms
124,928 KB
testcase_06 AC 76 ms
125,056 KB
testcase_07 AC 77 ms
123,904 KB
testcase_08 AC 77 ms
124,032 KB
testcase_09 AC 77 ms
124,928 KB
testcase_10 AC 169 ms
127,232 KB
testcase_11 AC 181 ms
126,592 KB
testcase_12 AC 176 ms
126,976 KB
testcase_13 AC 178 ms
127,360 KB
testcase_14 AC 188 ms
126,592 KB
testcase_15 AC 173 ms
126,848 KB
testcase_16 AC 185 ms
126,720 KB
testcase_17 AC 185 ms
126,592 KB
testcase_18 AC 166 ms
126,848 KB
testcase_19 AC 179 ms
126,720 KB
testcase_20 AC 62 ms
116,096 KB
testcase_21 AC 62 ms
116,224 KB
testcase_22 AC 175 ms
126,720 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 63 ms
116,096 KB
testcase_27 AC 64 ms
115,840 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import defaultdict 
# cnt = defaultdict(int)
cnt = [0] * (8*10**6+2)


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

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


ans = 0

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

print(ans)
0