結果

問題 No.800 四平方定理
ユーザー ronpooronpoo
提出日時 2023-08-25 14:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 188,928 KB
最終ジャッジ日時 2024-12-23 23:09:26
合計ジャッジ時間 7,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
62,592 KB
testcase_01 AC 64 ms
64,128 KB
testcase_02 AC 62 ms
63,616 KB
testcase_03 AC 64 ms
63,872 KB
testcase_04 AC 61 ms
63,872 KB
testcase_05 AC 62 ms
63,744 KB
testcase_06 AC 65 ms
64,640 KB
testcase_07 AC 64 ms
64,000 KB
testcase_08 AC 62 ms
64,128 KB
testcase_09 AC 65 ms
64,128 KB
testcase_10 AC 208 ms
125,696 KB
testcase_11 AC 232 ms
133,376 KB
testcase_12 AC 223 ms
132,352 KB
testcase_13 AC 215 ms
128,384 KB
testcase_14 AC 220 ms
133,376 KB
testcase_15 AC 226 ms
133,120 KB
testcase_16 AC 228 ms
134,016 KB
testcase_17 AC 228 ms
134,272 KB
testcase_18 AC 227 ms
133,888 KB
testcase_19 AC 238 ms
134,016 KB
testcase_20 AC 44 ms
51,712 KB
testcase_21 AC 43 ms
51,968 KB
testcase_22 AC 234 ms
134,400 KB
testcase_23 AC 381 ms
188,800 KB
testcase_24 AC 367 ms
188,928 KB
testcase_25 AC 382 ms
188,416 KB
testcase_26 AC 42 ms
51,712 KB
testcase_27 AC 44 ms
52,096 KB
testcase_28 AC 362 ms
188,160 KB
testcase_29 AC 371 ms
188,800 KB
testcase_30 AC 367 ms
188,288 KB
testcase_31 AC 352 ms
179,840 KB
testcase_32 AC 367 ms
188,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
cnt1 = [0] * (2*N**2 + 10)
cnt2 = [0] * (2*N**2 + 10)
L = len(cnt1)
for x in range(1, N+1):
    for y in range(1, N+1):
        v = x**2+y**2
        if 0 <= v < L:
            cnt1[v] += 1
        
for z in range(1, N+1):
    for w in range(1, N+1):        
        v = D + w**2 - z**2
        if 0 <= v < L:
            cnt2[v] += 1
ans = 0        
for i in range(L):
    ans += cnt1[i] * cnt2[i]
print(ans)
0