結果

問題 No.800 四平方定理
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-03-18 09:41:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 128,404 KB
最終ジャッジ日時 2024-07-17 23:38:27
合計ジャッジ時間 5,054 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
124,176 KB
testcase_01 AC 71 ms
126,072 KB
testcase_02 AC 73 ms
126,828 KB
testcase_03 AC 71 ms
125,428 KB
testcase_04 AC 71 ms
126,532 KB
testcase_05 AC 70 ms
125,704 KB
testcase_06 AC 70 ms
125,480 KB
testcase_07 AC 69 ms
124,984 KB
testcase_08 AC 69 ms
125,984 KB
testcase_09 AC 72 ms
126,652 KB
testcase_10 AC 125 ms
127,936 KB
testcase_11 AC 132 ms
127,676 KB
testcase_12 AC 127 ms
128,140 KB
testcase_13 AC 128 ms
127,492 KB
testcase_14 AC 124 ms
127,264 KB
testcase_15 AC 125 ms
128,404 KB
testcase_16 AC 134 ms
128,264 KB
testcase_17 AC 133 ms
127,540 KB
testcase_18 AC 126 ms
127,120 KB
testcase_19 AC 129 ms
127,824 KB
testcase_20 AC 60 ms
117,468 KB
testcase_21 AC 57 ms
117,808 KB
testcase_22 AC 121 ms
128,128 KB
testcase_23 AC 196 ms
127,320 KB
testcase_24 AC 190 ms
128,368 KB
testcase_25 AC 196 ms
127,756 KB
testcase_26 AC 58 ms
116,452 KB
testcase_27 AC 57 ms
116,800 KB
testcase_28 AC 200 ms
128,088 KB
testcase_29 AC 195 ms
127,592 KB
testcase_30 AC 187 ms
128,120 KB
testcase_31 AC 178 ms
128,116 KB
testcase_32 AC 198 ms
128,004 KB
権限があれば一括ダウンロードができます

ソースコード

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]
        if y+D-x >= 1:
          ans += cnt[ y+D - x ]

print(ans)
0