結果

問題 No.800 四平方定理
ユーザー ayaoniayaoni
提出日時 2020-11-27 03:23:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,546 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 267,480 KB
最終ジャッジ日時 2024-07-23 21:18:58
合計ジャッジ時間 20,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,696 KB
testcase_01 AC 67 ms
73,692 KB
testcase_02 AC 66 ms
71,736 KB
testcase_03 AC 66 ms
72,300 KB
testcase_04 AC 64 ms
72,204 KB
testcase_05 AC 67 ms
71,844 KB
testcase_06 AC 73 ms
74,976 KB
testcase_07 AC 72 ms
75,396 KB
testcase_08 AC 76 ms
79,696 KB
testcase_09 AC 70 ms
73,868 KB
testcase_10 AC 676 ms
215,708 KB
testcase_11 AC 677 ms
216,368 KB
testcase_12 AC 728 ms
237,496 KB
testcase_13 AC 579 ms
179,888 KB
testcase_14 AC 635 ms
216,056 KB
testcase_15 AC 735 ms
237,844 KB
testcase_16 AC 628 ms
216,108 KB
testcase_17 AC 645 ms
216,176 KB
testcase_18 AC 837 ms
242,056 KB
testcase_19 AC 823 ms
242,000 KB
testcase_20 AC 41 ms
54,272 KB
testcase_21 AC 42 ms
54,384 KB
testcase_22 AC 801 ms
237,760 KB
testcase_23 AC 1,546 ms
259,364 KB
testcase_24 AC 1,279 ms
259,432 KB
testcase_25 AC 1,484 ms
259,276 KB
testcase_26 AC 40 ms
54,144 KB
testcase_27 AC 40 ms
53,816 KB
testcase_28 AC 1,234 ms
259,164 KB
testcase_29 AC 1,409 ms
259,056 KB
testcase_30 AC 1,253 ms
259,216 KB
testcase_31 AC 1,125 ms
267,480 KB
testcase_32 AC 1,301 ms
259,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
def MI(): return map(int,sys.stdin.readline().rstrip().split())


N,D = MI()

count = defaultdict(int)
for i in range(1,N+1):
    for j in range(i,N+1):
        a = i**2+j**2
        if i == j:
            count[a] += 1
        else:
            count[a] += 2

ans = 0
for i in range(1,N+1):
    for j in range(1,N+1):
        b = -i**2+j**2+D
        if b >= 2:
            ans += count[-i**2+j**2+D]

print(ans)
0