結果

問題 No.800 四平方定理
ユーザー flippergoflippergo
提出日時 2024-10-14 09:42:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 125,824 KB
最終ジャッジ日時 2024-10-14 09:42:18
合計ジャッジ時間 6,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,672 KB
testcase_01 AC 51 ms
62,336 KB
testcase_02 AC 51 ms
61,952 KB
testcase_03 AC 50 ms
61,824 KB
testcase_04 AC 52 ms
61,696 KB
testcase_05 AC 50 ms
61,824 KB
testcase_06 AC 54 ms
62,592 KB
testcase_07 AC 51 ms
62,080 KB
testcase_08 AC 51 ms
61,696 KB
testcase_09 AC 53 ms
62,080 KB
testcase_10 AC 141 ms
94,208 KB
testcase_11 AC 150 ms
97,792 KB
testcase_12 AC 155 ms
97,152 KB
testcase_13 AC 163 ms
96,000 KB
testcase_14 AC 151 ms
98,048 KB
testcase_15 AC 150 ms
97,920 KB
testcase_16 AC 147 ms
98,944 KB
testcase_17 AC 147 ms
98,304 KB
testcase_18 AC 154 ms
97,792 KB
testcase_19 AC 157 ms
98,176 KB
testcase_20 AC 37 ms
51,456 KB
testcase_21 AC 42 ms
51,712 KB
testcase_22 AC 153 ms
98,176 KB
testcase_23 AC 253 ms
125,440 KB
testcase_24 AC 249 ms
125,696 KB
testcase_25 AC 252 ms
125,440 KB
testcase_26 AC 38 ms
51,328 KB
testcase_27 AC 37 ms
51,584 KB
testcase_28 AC 271 ms
125,312 KB
testcase_29 AC 260 ms
125,440 KB
testcase_30 AC 249 ms
125,824 KB
testcase_31 AC 231 ms
121,472 KB
testcase_32 AC 249 ms
125,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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