結果

問題 No.800 四平方定理
ユーザー tpynerivertpyneriver
提出日時 2019-03-18 00:31:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 767 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 405,120 KB
最終ジャッジ日時 2024-07-08 07:47:47
合計ジャッジ時間 24,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 620 ms
402,700 KB
testcase_01 AC 620 ms
403,632 KB
testcase_02 AC 599 ms
403,568 KB
testcase_03 AC 592 ms
403,312 KB
testcase_04 AC 617 ms
403,360 KB
testcase_05 AC 603 ms
403,252 KB
testcase_06 AC 634 ms
403,508 KB
testcase_07 AC 665 ms
402,976 KB
testcase_08 AC 661 ms
402,980 KB
testcase_09 AC 645 ms
403,548 KB
testcase_10 AC 678 ms
405,024 KB
testcase_11 AC 690 ms
404,672 KB
testcase_12 AC 701 ms
405,120 KB
testcase_13 AC 700 ms
404,692 KB
testcase_14 AC 687 ms
404,440 KB
testcase_15 AC 689 ms
404,464 KB
testcase_16 AC 671 ms
404,812 KB
testcase_17 AC 680 ms
404,636 KB
testcase_18 AC 688 ms
404,996 KB
testcase_19 AC 682 ms
404,788 KB
testcase_20 AC 616 ms
399,408 KB
testcase_21 AC 611 ms
399,380 KB
testcase_22 AC 693 ms
404,728 KB
testcase_23 AC 767 ms
404,724 KB
testcase_24 AC 726 ms
404,916 KB
testcase_25 AC 744 ms
404,844 KB
testcase_26 AC 654 ms
399,716 KB
testcase_27 AC 607 ms
399,660 KB
testcase_28 AC 731 ms
404,248 KB
testcase_29 AC 752 ms
404,824 KB
testcase_30 AC 766 ms
404,492 KB
testcase_31 AC 735 ms
404,312 KB
testcase_32 AC 751 ms
404,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())

su = [0] * (8*10**6 + 1)
for a in range(1, N+1):
    for b in range(1, N+1):
        su[a*a + b*b] += 1


di = [0] * (8*10**6 + 1)
for c in range(1, N+1):
    for d in range(1, N+1):
        k = c*c - d*d + D
        if k > 0:
            di[c*c - d*d + D] += 1

print(sum([i * j for i, j in zip(su, di)]))
0