結果

問題 No.800 四平方定理
ユーザー ntk-ta01ntk-ta01
提出日時 2020-08-01 15:46:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 154,324 KB
最終ジャッジ日時 2024-07-08 02:45:07
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
139,296 KB
testcase_01 AC 90 ms
142,068 KB
testcase_02 AC 91 ms
141,212 KB
testcase_03 AC 90 ms
141,012 KB
testcase_04 AC 97 ms
140,376 KB
testcase_05 AC 95 ms
140,508 KB
testcase_06 AC 95 ms
141,952 KB
testcase_07 AC 91 ms
145,528 KB
testcase_08 AC 88 ms
140,684 KB
testcase_09 AC 96 ms
142,580 KB
testcase_10 AC 145 ms
154,324 KB
testcase_11 AC 179 ms
153,464 KB
testcase_12 AC 155 ms
153,456 KB
testcase_13 AC 153 ms
153,576 KB
testcase_14 AC 161 ms
153,568 KB
testcase_15 AC 156 ms
153,832 KB
testcase_16 AC 158 ms
153,400 KB
testcase_17 AC 166 ms
153,984 KB
testcase_18 AC 165 ms
151,576 KB
testcase_19 AC 163 ms
152,332 KB
testcase_20 AC 80 ms
136,404 KB
testcase_21 AC 78 ms
136,236 KB
testcase_22 AC 157 ms
151,976 KB
testcase_23 AC 229 ms
154,092 KB
testcase_24 AC 224 ms
154,140 KB
testcase_25 AC 223 ms
154,224 KB
testcase_26 AC 77 ms
135,668 KB
testcase_27 AC 76 ms
136,088 KB
testcase_28 AC 223 ms
154,088 KB
testcase_29 AC 233 ms
153,956 KB
testcase_30 AC 230 ms
153,524 KB
testcase_31 AC 219 ms
153,860 KB
testcase_32 AC 224 ms
154,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C = 5*10**6


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

    cA = [0]*(C+1)
    for x in range(1, N+1):
        for y in range(1, N+1):
            v = x**2 + y**2
            if v <= C:
                cA[v] += 1

    cB = [0]*(C+1)
    for z in range(1, N+1):
        for w in range(1, N+1):
            v = w**2 - z**2 + D
            if 0 <= v:
                cB[v] += 1
    ans = 0
    for a, b in zip(cA, cB):
        ans += a*b
    print(ans)


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