結果

問題 No.800 四平方定理
ユーザー lloyzlloyz
提出日時 2022-11-03 13:26:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,503 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 257,060 KB
最終ジャッジ日時 2024-07-17 23:17:12
合計ジャッジ時間 20,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
65,064 KB
testcase_01 AC 65 ms
68,756 KB
testcase_02 AC 55 ms
68,516 KB
testcase_03 AC 53 ms
68,316 KB
testcase_04 AC 55 ms
67,592 KB
testcase_05 AC 59 ms
68,116 KB
testcase_06 AC 59 ms
71,692 KB
testcase_07 AC 57 ms
68,140 KB
testcase_08 AC 58 ms
71,308 KB
testcase_09 AC 61 ms
70,352 KB
testcase_10 AC 634 ms
216,252 KB
testcase_11 AC 711 ms
231,344 KB
testcase_12 AC 664 ms
231,076 KB
testcase_13 AC 635 ms
216,300 KB
testcase_14 AC 672 ms
231,080 KB
testcase_15 AC 698 ms
231,136 KB
testcase_16 AC 668 ms
231,112 KB
testcase_17 AC 677 ms
231,340 KB
testcase_18 AC 685 ms
231,156 KB
testcase_19 AC 680 ms
231,144 KB
testcase_20 AC 34 ms
53,260 KB
testcase_21 AC 35 ms
52,652 KB
testcase_22 AC 703 ms
231,136 KB
testcase_23 AC 1,503 ms
256,848 KB
testcase_24 AC 1,365 ms
256,920 KB
testcase_25 AC 1,453 ms
256,924 KB
testcase_26 AC 34 ms
52,336 KB
testcase_27 AC 33 ms
53,128 KB
testcase_28 AC 1,292 ms
257,016 KB
testcase_29 AC 1,352 ms
257,060 KB
testcase_30 AC 1,325 ms
256,796 KB
testcase_31 AC 1,097 ms
248,580 KB
testcase_32 AC 1,401 ms
256,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

counter = dict()
for w in range(1, n + 1):
    for z in range(1, n + 1):
        res = w**2 - z**2
        if counter.get(res, None) is None:
            counter[res] = 1
        else:
            counter[res] += 1

ans = 0
for x in range(1, n + 1):
    for y in range(1, n + 1):
        res = x**2 + y**2 - d
        if counter.get(res, None) is not None:
            ans += counter[res]
print(ans)
0