結果

問題 No.800 四平方定理
ユーザー convexineqconvexineq
提出日時 2021-03-25 03:50:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 125,312 KB
最終ジャッジ日時 2024-05-05 05:41:19
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,416 KB
testcase_01 AC 48 ms
62,208 KB
testcase_02 AC 47 ms
61,440 KB
testcase_03 AC 45 ms
61,440 KB
testcase_04 AC 45 ms
61,184 KB
testcase_05 AC 46 ms
61,440 KB
testcase_06 AC 47 ms
61,824 KB
testcase_07 AC 46 ms
61,952 KB
testcase_08 AC 49 ms
61,056 KB
testcase_09 AC 44 ms
62,080 KB
testcase_10 AC 105 ms
92,928 KB
testcase_11 AC 112 ms
96,512 KB
testcase_12 AC 113 ms
95,744 KB
testcase_13 AC 100 ms
93,696 KB
testcase_14 AC 104 ms
97,024 KB
testcase_15 AC 112 ms
96,000 KB
testcase_16 AC 109 ms
97,280 KB
testcase_17 AC 109 ms
96,768 KB
testcase_18 AC 120 ms
97,152 KB
testcase_19 AC 122 ms
97,024 KB
testcase_20 AC 35 ms
52,352 KB
testcase_21 AC 36 ms
51,712 KB
testcase_22 AC 122 ms
97,024 KB
testcase_23 AC 179 ms
124,416 KB
testcase_24 AC 168 ms
124,800 KB
testcase_25 AC 184 ms
123,904 KB
testcase_26 AC 35 ms
52,136 KB
testcase_27 AC 35 ms
51,968 KB
testcase_28 AC 169 ms
124,160 KB
testcase_29 AC 180 ms
125,312 KB
testcase_30 AC 161 ms
123,648 KB
testcase_31 AC 154 ms
119,808 KB
testcase_32 AC 167 ms
124,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())
N = 2*n*n
r = [0]*(N+1)
for x in range(1,n+1):
    for y in range(1,n+1):
        r[x*x+y*y] += 1
ans = 0
for w in range(1,n+1):
    for z in range(1,n+1):
        dd = d + w*w - z*z
        if 0 < dd <= N:
            ans += r[dd]
print(ans)
0