結果

問題 No.800 四平方定理
ユーザー neterukunneterukun
提出日時 2019-05-17 20:33:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,607 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 203,464 KB
最終ジャッジ日時 2024-09-17 06:00:41
合計ジャッジ時間 21,948 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
65,468 KB
testcase_01 AC 62 ms
68,976 KB
testcase_02 AC 59 ms
68,344 KB
testcase_03 AC 57 ms
66,940 KB
testcase_04 AC 55 ms
66,412 KB
testcase_05 AC 55 ms
66,548 KB
testcase_06 AC 61 ms
68,776 KB
testcase_07 AC 61 ms
67,124 KB
testcase_08 AC 59 ms
67,964 KB
testcase_09 AC 60 ms
69,748 KB
testcase_10 AC 645 ms
153,876 KB
testcase_11 AC 706 ms
162,196 KB
testcase_12 AC 719 ms
162,868 KB
testcase_13 AC 717 ms
162,200 KB
testcase_14 AC 759 ms
162,404 KB
testcase_15 AC 687 ms
162,620 KB
testcase_16 AC 670 ms
162,252 KB
testcase_17 AC 695 ms
162,376 KB
testcase_18 AC 685 ms
162,592 KB
testcase_19 AC 654 ms
162,576 KB
testcase_20 AC 36 ms
52,544 KB
testcase_21 AC 39 ms
53,956 KB
testcase_22 AC 743 ms
162,504 KB
testcase_23 AC 1,499 ms
203,464 KB
testcase_24 AC 1,434 ms
203,416 KB
testcase_25 AC 1,525 ms
202,980 KB
testcase_26 AC 37 ms
53,288 KB
testcase_27 AC 37 ms
52,432 KB
testcase_28 AC 1,544 ms
203,168 KB
testcase_29 AC 1,607 ms
203,196 KB
testcase_30 AC 1,597 ms
203,096 KB
testcase_31 AC 1,425 ms
203,180 KB
testcase_32 AC 1,555 ms
203,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())

li1 = {}
for x in range(1, n + 1):
    for y in range(1, n + 1):
        if x**2 + y**2 not in li1:
            li1[x**2 + y**2] = 1
        else:
            li1[x**2 + y**2] += 1
ans = 0
for i in range(1, n + 1):
    for j in range(1, n + 1):
        if d + i**2 - j**2 in li1:
            ans += li1[d + i**2 - j**2]
print(ans)
0