結果

問題 No.800 四平方定理
ユーザー tpynerivertpyneriver
提出日時 2019-03-18 02:08:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 451 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 127,360 KB
最終ジャッジ日時 2024-07-08 08:00:23
合計ジャッジ時間 6,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
123,648 KB
testcase_01 AC 92 ms
125,056 KB
testcase_02 AC 91 ms
124,800 KB
testcase_03 AC 92 ms
124,544 KB
testcase_04 AC 93 ms
124,672 KB
testcase_05 AC 98 ms
124,800 KB
testcase_06 AC 95 ms
124,928 KB
testcase_07 AC 94 ms
123,776 KB
testcase_08 AC 93 ms
124,160 KB
testcase_09 AC 94 ms
124,800 KB
testcase_10 AC 162 ms
126,592 KB
testcase_11 AC 175 ms
126,848 KB
testcase_12 AC 173 ms
127,104 KB
testcase_13 AC 175 ms
126,976 KB
testcase_14 AC 180 ms
126,592 KB
testcase_15 AC 170 ms
126,848 KB
testcase_16 AC 177 ms
126,336 KB
testcase_17 AC 181 ms
126,336 KB
testcase_18 AC 169 ms
126,464 KB
testcase_19 AC 169 ms
126,720 KB
testcase_20 AC 85 ms
115,840 KB
testcase_21 AC 82 ms
116,352 KB
testcase_22 AC 174 ms
126,464 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 81 ms
116,096 KB
testcase_27 AC 81 ms
115,968 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 = [0] * (8*10**6 + 1)


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