結果

問題 No.800 四平方定理
ユーザー ireenaireena
提出日時 2022-01-22 16:27:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 200,576 KB
最終ジャッジ日時 2024-11-27 14:06:09
合計ジャッジ時間 7,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
63,488 KB
testcase_01 AC 58 ms
65,792 KB
testcase_02 AC 56 ms
64,512 KB
testcase_03 AC 53 ms
64,768 KB
testcase_04 AC 52 ms
64,896 KB
testcase_05 AC 53 ms
65,152 KB
testcase_06 AC 54 ms
66,304 KB
testcase_07 AC 58 ms
68,096 KB
testcase_08 AC 51 ms
63,744 KB
testcase_09 AC 52 ms
66,176 KB
testcase_10 AC 203 ms
137,088 KB
testcase_11 AC 218 ms
145,024 KB
testcase_12 AC 220 ms
143,744 KB
testcase_13 AC 188 ms
140,288 KB
testcase_14 AC 200 ms
144,896 KB
testcase_15 AC 233 ms
144,768 KB
testcase_16 AC 216 ms
145,792 KB
testcase_17 AC 203 ms
145,792 KB
testcase_18 AC 241 ms
145,664 KB
testcase_19 AC 243 ms
145,280 KB
testcase_20 AC 35 ms
51,712 KB
testcase_21 AC 36 ms
51,200 KB
testcase_22 AC 241 ms
145,792 KB
testcase_23 AC 385 ms
200,320 KB
testcase_24 AC 335 ms
199,936 KB
testcase_25 AC 381 ms
200,064 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 35 ms
51,584 KB
testcase_28 AC 334 ms
199,808 KB
testcase_29 AC 382 ms
200,064 KB
testcase_30 AC 344 ms
200,064 KB
testcase_31 AC 313 ms
191,232 KB
testcase_32 AC 351 ms
200,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
mx = 2 * pow(N, 2)

def make_cnt(n, d=None):
    cnt = [0] * (mx + 1)
    for i in range(1, n+1):
        for j in range(1, n+1):
            if d is not None:
                tmp = pow(i, 2) - pow(j, 2) + d
            else:
                tmp = pow(i, 2) + pow(j, 2)
            if 0 < tmp < mx + 1:
                cnt[tmp] += 1
    return cnt

xy_cnt = make_cnt(N)
wz_cnt = make_cnt(N, D)

ans = 0
for i in range(1, mx+1):
    ans += xy_cnt[i] * wz_cnt[i]

print(ans)
0