結果

問題 No.800 四平方定理
ユーザー tamatotamato
提出日時 2020-04-28 01:54:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,728 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 964 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 256,340 KB
最終ジャッジ日時 2024-05-02 07:57:08
合計ジャッジ時間 23,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,640 KB
testcase_01 AC 63 ms
68,092 KB
testcase_02 AC 62 ms
66,304 KB
testcase_03 AC 60 ms
66,816 KB
testcase_04 AC 58 ms
65,792 KB
testcase_05 AC 60 ms
66,688 KB
testcase_06 AC 66 ms
70,912 KB
testcase_07 AC 67 ms
70,272 KB
testcase_08 AC 64 ms
69,500 KB
testcase_09 AC 66 ms
68,992 KB
testcase_10 AC 699 ms
231,444 KB
testcase_11 AC 784 ms
231,472 KB
testcase_12 AC 765 ms
231,548 KB
testcase_13 AC 751 ms
231,512 KB
testcase_14 AC 759 ms
231,056 KB
testcase_15 AC 783 ms
231,448 KB
testcase_16 AC 764 ms
231,492 KB
testcase_17 AC 785 ms
231,072 KB
testcase_18 AC 743 ms
231,420 KB
testcase_19 AC 772 ms
231,548 KB
testcase_20 AC 39 ms
52,276 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 AC 805 ms
231,428 KB
testcase_23 AC 1,652 ms
256,028 KB
testcase_24 AC 1,595 ms
255,748 KB
testcase_25 AC 1,728 ms
255,696 KB
testcase_26 AC 38 ms
51,992 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 AC 1,511 ms
255,700 KB
testcase_29 AC 1,513 ms
255,700 KB
testcase_30 AC 1,450 ms
256,340 KB
testcase_31 AC 1,305 ms
255,268 KB
testcase_32 AC 1,599 ms
255,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    cnt = {}
    for w in range(1, N+1):
        for z in range(1, N+1):
            if w*w - z*z in cnt:
                cnt[w*w - z*z] += 1
            else:
                cnt[w*w - z*z] = 1
    ans = 0
    for x in range(1, N+1):
        for y in range(1, N+1):
            if x*x + y*y - D in cnt:
                ans += cnt[x*x + y*y - D]
    print(ans)


if __name__ == '__main__':
    main()
0