結果

問題 No.800 四平方定理
ユーザー ああいいああいい
提出日時 2022-05-29 19:10:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 125,184 KB
最終ジャッジ日時 2024-09-21 00:35:33
合計ジャッジ時間 4,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,160 KB
testcase_01 AC 48 ms
62,336 KB
testcase_02 AC 47 ms
61,952 KB
testcase_03 AC 47 ms
61,568 KB
testcase_04 AC 48 ms
61,184 KB
testcase_05 AC 49 ms
61,824 KB
testcase_06 AC 49 ms
61,952 KB
testcase_07 AC 48 ms
61,056 KB
testcase_08 AC 46 ms
61,312 KB
testcase_09 AC 48 ms
62,336 KB
testcase_10 AC 123 ms
92,672 KB
testcase_11 AC 122 ms
96,256 KB
testcase_12 AC 120 ms
95,744 KB
testcase_13 AC 108 ms
94,080 KB
testcase_14 AC 114 ms
96,896 KB
testcase_15 AC 125 ms
96,512 KB
testcase_16 AC 121 ms
97,280 KB
testcase_17 AC 121 ms
97,152 KB
testcase_18 AC 129 ms
97,152 KB
testcase_19 AC 131 ms
97,152 KB
testcase_20 AC 38 ms
51,840 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 133 ms
97,024 KB
testcase_23 AC 210 ms
124,544 KB
testcase_24 AC 182 ms
124,784 KB
testcase_25 AC 204 ms
124,032 KB
testcase_26 AC 37 ms
52,224 KB
testcase_27 AC 36 ms
51,712 KB
testcase_28 AC 180 ms
123,904 KB
testcase_29 AC 197 ms
125,184 KB
testcase_30 AC 181 ms
124,544 KB
testcase_31 AC 174 ms
119,680 KB
testcase_32 AC 184 ms
124,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())
C = N * N * 2 + 1
dat = [0] * C
for x in range(1,N + 1):
    u = x * x
    for y in range(1,N + 1):
        dat[u + y * y] += 1
ans = 0
for w in range(1,N + 1):
    u = D + w * w
    for z in range(1, N + 1):
        v = u - z * z
        if 1 <= v < C:
            ans += dat[v]
print(ans)
0