結果

問題 No.800 四平方定理
ユーザー ireenaireena
提出日時 2022-01-22 16:27:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 200,764 KB
最終ジャッジ日時 2024-05-05 15:38:02
合計ジャッジ時間 7,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
63,232 KB
testcase_01 AC 55 ms
65,920 KB
testcase_02 AC 54 ms
65,152 KB
testcase_03 AC 54 ms
65,408 KB
testcase_04 AC 51 ms
65,536 KB
testcase_05 AC 52 ms
66,048 KB
testcase_06 AC 54 ms
66,440 KB
testcase_07 AC 57 ms
68,480 KB
testcase_08 AC 55 ms
65,152 KB
testcase_09 AC 54 ms
65,920 KB
testcase_10 AC 202 ms
137,728 KB
testcase_11 AC 213 ms
145,104 KB
testcase_12 AC 220 ms
144,152 KB
testcase_13 AC 189 ms
140,544 KB
testcase_14 AC 201 ms
145,068 KB
testcase_15 AC 225 ms
144,816 KB
testcase_16 AC 199 ms
145,996 KB
testcase_17 AC 197 ms
146,048 KB
testcase_18 AC 244 ms
145,704 KB
testcase_19 AC 240 ms
145,644 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 AC 37 ms
52,064 KB
testcase_22 AC 246 ms
146,008 KB
testcase_23 AC 383 ms
200,484 KB
testcase_24 AC 316 ms
200,764 KB
testcase_25 AC 392 ms
200,192 KB
testcase_26 AC 37 ms
51,712 KB
testcase_27 AC 36 ms
51,712 KB
testcase_28 AC 338 ms
199,920 KB
testcase_29 AC 367 ms
200,264 KB
testcase_30 AC 342 ms
200,020 KB
testcase_31 AC 316 ms
191,524 KB
testcase_32 AC 337 ms
200,524 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