結果

問題 No.800 四平方定理
ユーザー roarisroaris
提出日時 2019-07-27 00:46:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 201,076 KB
最終ジャッジ日時 2024-07-02 10:19:01
合計ジャッジ時間 6,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
65,408 KB
testcase_01 AC 56 ms
69,888 KB
testcase_02 AC 56 ms
67,456 KB
testcase_03 AC 57 ms
68,224 KB
testcase_04 AC 57 ms
67,584 KB
testcase_05 AC 56 ms
67,968 KB
testcase_06 AC 60 ms
71,040 KB
testcase_07 AC 54 ms
68,864 KB
testcase_08 AC 55 ms
69,760 KB
testcase_09 AC 56 ms
69,888 KB
testcase_10 AC 178 ms
137,344 KB
testcase_11 AC 211 ms
145,044 KB
testcase_12 AC 186 ms
143,948 KB
testcase_13 AC 173 ms
140,592 KB
testcase_14 AC 179 ms
145,608 KB
testcase_15 AC 189 ms
144,576 KB
testcase_16 AC 181 ms
146,164 KB
testcase_17 AC 186 ms
145,996 KB
testcase_18 AC 199 ms
145,888 KB
testcase_19 AC 200 ms
146,060 KB
testcase_20 AC 38 ms
52,052 KB
testcase_21 AC 34 ms
52,096 KB
testcase_22 AC 204 ms
146,264 KB
testcase_23 AC 312 ms
200,484 KB
testcase_24 AC 291 ms
201,076 KB
testcase_25 AC 340 ms
200,316 KB
testcase_26 AC 37 ms
52,088 KB
testcase_27 AC 35 ms
51,712 KB
testcase_28 AC 290 ms
200,192 KB
testcase_29 AC 301 ms
200,412 KB
testcase_30 AC 284 ms
200,140 KB
testcase_31 AC 271 ms
191,432 KB
testcase_32 AC 287 ms
200,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
cnt1 = [0] * (2*N*N+1)
cnt2 = [0] * (2*N*N+1)

for x in range(1, N+1):
    for y in range(1, N+1):
        cnt1[x**2 + y**2] += 1

for w in range(1, N+1):
    for z in range(1, N+1):
        if 0 <= w**2 - z**2 + D <= 2*N*N:
            cnt2[w**2 - z**2 + D] += 1

ans = sum(cnt1_i * cnt2_i for cnt1_i, cnt2_i in zip(cnt1, cnt2))
print(ans)
0