結果

問題 No.800 四平方定理
ユーザー tamatotamato
提出日時 2020-07-16 21:56:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 126,976 KB
最終ジャッジ日時 2024-05-04 02:41:53
合計ジャッジ時間 6,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
121,472 KB
testcase_01 AC 74 ms
123,904 KB
testcase_02 AC 75 ms
124,544 KB
testcase_03 AC 79 ms
123,648 KB
testcase_04 AC 75 ms
124,288 KB
testcase_05 AC 78 ms
124,416 KB
testcase_06 AC 78 ms
123,904 KB
testcase_07 AC 82 ms
126,976 KB
testcase_08 AC 74 ms
123,392 KB
testcase_09 AC 72 ms
123,136 KB
testcase_10 AC 146 ms
124,160 KB
testcase_11 AC 163 ms
124,544 KB
testcase_12 AC 170 ms
124,288 KB
testcase_13 AC 147 ms
123,008 KB
testcase_14 AC 159 ms
123,520 KB
testcase_15 AC 168 ms
124,160 KB
testcase_16 AC 155 ms
123,136 KB
testcase_17 AC 153 ms
123,776 KB
testcase_18 AC 185 ms
123,904 KB
testcase_19 AC 165 ms
124,288 KB
testcase_20 AC 62 ms
114,304 KB
testcase_21 AC 64 ms
114,560 KB
testcase_22 AC 162 ms
123,904 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 63 ms
114,688 KB
testcase_27 AC 65 ms
114,560 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

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

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


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