結果

問題 No.800 四平方定理
ユーザー stngstng
提出日時 2022-07-03 19:02:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 1,226 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 126,592 KB
最終ジャッジ日時 2024-05-07 02:32:11
合計ジャッジ時間 6,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,544 KB
testcase_01 AC 49 ms
62,336 KB
testcase_02 AC 52 ms
61,952 KB
testcase_03 AC 52 ms
62,336 KB
testcase_04 AC 51 ms
62,208 KB
testcase_05 AC 50 ms
61,952 KB
testcase_06 AC 48 ms
62,848 KB
testcase_07 AC 49 ms
62,080 KB
testcase_08 AC 48 ms
61,696 KB
testcase_09 AC 50 ms
62,336 KB
testcase_10 AC 126 ms
93,952 KB
testcase_11 AC 133 ms
97,664 KB
testcase_12 AC 133 ms
97,152 KB
testcase_13 AC 120 ms
95,104 KB
testcase_14 AC 140 ms
98,688 KB
testcase_15 AC 153 ms
97,664 KB
testcase_16 AC 138 ms
98,944 KB
testcase_17 AC 134 ms
98,272 KB
testcase_18 AC 141 ms
98,432 KB
testcase_19 AC 141 ms
98,300 KB
testcase_20 AC 38 ms
51,712 KB
testcase_21 AC 35 ms
51,456 KB
testcase_22 AC 141 ms
98,816 KB
testcase_23 AC 224 ms
126,208 KB
testcase_24 AC 210 ms
125,952 KB
testcase_25 AC 224 ms
125,568 KB
testcase_26 AC 36 ms
51,456 KB
testcase_27 AC 34 ms
51,584 KB
testcase_28 AC 200 ms
124,928 KB
testcase_29 AC 224 ms
126,592 KB
testcase_30 AC 201 ms
125,312 KB
testcase_31 AC 187 ms
120,832 KB
testcase_32 AC 204 ms
125,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())

yz = [0]*(2*(n**2)+1)

for i in range(1,n+1):
    for j in range(1,n+1):
        yz[i**2+j**2] += 1

ans = 0

for w in range(1,n+1):
    for x in range(1,n+1):
        tmp = w**2+d-x**2
        if tmp > 0 and tmp <= (2*(n**2)):
            ans += yz[tmp]

print(ans)
0