結果

問題 No.800 四平方定理
ユーザー ntk-ta01ntk-ta01
提出日時 2020-08-01 15:23:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 189,568 KB
最終ジャッジ日時 2024-07-08 02:42:52
合計ジャッジ時間 7,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
185,216 KB
testcase_01 AC 119 ms
185,984 KB
testcase_02 AC 121 ms
186,496 KB
testcase_03 AC 120 ms
186,240 KB
testcase_04 AC 118 ms
185,856 KB
testcase_05 AC 118 ms
185,728 KB
testcase_06 AC 119 ms
186,112 KB
testcase_07 AC 117 ms
189,568 KB
testcase_08 AC 120 ms
185,856 KB
testcase_09 AC 121 ms
185,856 KB
testcase_10 AC 169 ms
186,368 KB
testcase_11 AC 179 ms
186,880 KB
testcase_12 AC 185 ms
186,368 KB
testcase_13 AC 175 ms
187,776 KB
testcase_14 AC 185 ms
187,264 KB
testcase_15 AC 173 ms
186,112 KB
testcase_16 AC 187 ms
187,648 KB
testcase_17 AC 187 ms
187,392 KB
testcase_18 AC 178 ms
185,856 KB
testcase_19 AC 179 ms
186,752 KB
testcase_20 AC 112 ms
182,272 KB
testcase_21 AC 115 ms
182,528 KB
testcase_22 AC 183 ms
186,112 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 112 ms
182,272 KB
testcase_27 AC 112 ms
181,888 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

ADD = 4*10**6


def main():
    N, D = (int(i) for i in input().split())

    cA = [0]*(2*ADD)
    for x in range(1, N+1):
        for y in range(1, N+1):
            cA[D - x**2 - y**2 + ADD] += 1

    cB = [0]*(2*ADD)
    for z in range(1, N+1):
        for w in range(1, N+1):
            cB[z**2 - w**2 + ADD] += 1

    ans = 0
    for a, b in zip(cA, cB):
        ans += a*b
    print(ans)


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