結果

問題 No.800 四平方定理
ユーザー tpynerivertpyneriver
提出日時 2019-03-18 02:14:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 127,616 KB
最終ジャッジ日時 2024-07-08 08:01:04
合計ジャッジ時間 6,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
124,032 KB
testcase_01 AC 101 ms
125,184 KB
testcase_02 AC 99 ms
125,056 KB
testcase_03 AC 99 ms
124,928 KB
testcase_04 AC 103 ms
125,312 KB
testcase_05 AC 98 ms
124,928 KB
testcase_06 AC 98 ms
125,312 KB
testcase_07 AC 97 ms
124,160 KB
testcase_08 AC 98 ms
124,288 KB
testcase_09 AC 100 ms
125,312 KB
testcase_10 AC 155 ms
127,360 KB
testcase_11 AC 170 ms
126,976 KB
testcase_12 AC 164 ms
127,104 KB
testcase_13 AC 157 ms
127,104 KB
testcase_14 AC 164 ms
126,976 KB
testcase_15 AC 167 ms
127,104 KB
testcase_16 AC 164 ms
126,976 KB
testcase_17 AC 168 ms
127,360 KB
testcase_18 AC 166 ms
127,488 KB
testcase_19 AC 166 ms
127,360 KB
testcase_20 AC 87 ms
116,096 KB
testcase_21 AC 87 ms
115,968 KB
testcase_22 AC 165 ms
127,360 KB
testcase_23 AC 254 ms
127,104 KB
testcase_24 AC 272 ms
127,104 KB
testcase_25 AC 264 ms
127,360 KB
testcase_26 AC 92 ms
115,968 KB
testcase_27 AC 91 ms
116,352 KB
testcase_28 AC 253 ms
127,360 KB
testcase_29 AC 255 ms
127,360 KB
testcase_30 AC 233 ms
126,976 KB
testcase_31 AC 230 ms
127,616 KB
testcase_32 AC 237 ms
126,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import defaultdict 
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):
        # 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[ max(0, y+D - x)]

print(ans)
            
0