結果

問題 No.800 四平方定理
ユーザー ronpooronpoo
提出日時 2023-08-25 14:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 189,424 KB
最終ジャッジ日時 2024-06-06 09:00:57
合計ジャッジ時間 6,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,336 KB
testcase_01 AC 55 ms
64,128 KB
testcase_02 AC 54 ms
63,744 KB
testcase_03 AC 56 ms
63,744 KB
testcase_04 AC 56 ms
63,868 KB
testcase_05 AC 54 ms
63,360 KB
testcase_06 AC 60 ms
64,640 KB
testcase_07 AC 58 ms
64,768 KB
testcase_08 AC 53 ms
63,744 KB
testcase_09 AC 54 ms
64,512 KB
testcase_10 AC 172 ms
125,696 KB
testcase_11 AC 197 ms
133,740 KB
testcase_12 AC 187 ms
132,096 KB
testcase_13 AC 175 ms
128,768 KB
testcase_14 AC 186 ms
133,760 KB
testcase_15 AC 190 ms
132,864 KB
testcase_16 AC 187 ms
134,144 KB
testcase_17 AC 190 ms
134,528 KB
testcase_18 AC 191 ms
134,144 KB
testcase_19 AC 190 ms
134,528 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 187 ms
134,592 KB
testcase_23 AC 299 ms
188,928 KB
testcase_24 AC 299 ms
188,544 KB
testcase_25 AC 303 ms
188,544 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 39 ms
51,840 KB
testcase_28 AC 281 ms
188,160 KB
testcase_29 AC 303 ms
189,184 KB
testcase_30 AC 283 ms
188,288 KB
testcase_31 AC 284 ms
179,840 KB
testcase_32 AC 294 ms
189,424 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