結果

問題 No.800 四平方定理
ユーザー heno239heno239
提出日時 2019-03-14 14:55:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 293 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,936 KB
最終ジャッジ日時 2024-07-01 19:39:03
合計ジャッジ時間 31,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
45,696 KB
testcase_01 AC 116 ms
45,696 KB
testcase_02 AC 98 ms
45,824 KB
testcase_03 AC 102 ms
45,696 KB
testcase_04 AC 98 ms
45,936 KB
testcase_05 AC 102 ms
45,696 KB
testcase_06 AC 121 ms
45,784 KB
testcase_07 AC 109 ms
45,696 KB
testcase_08 AC 123 ms
45,696 KB
testcase_09 AC 114 ms
45,868 KB
testcase_10 AC 1,450 ms
45,696 KB
testcase_11 AC 1,604 ms
45,756 KB
testcase_12 AC 1,622 ms
45,824 KB
testcase_13 AC 1,412 ms
45,812 KB
testcase_14 AC 1,544 ms
45,824 KB
testcase_15 AC 1,597 ms
45,692 KB
testcase_16 AC 1,554 ms
45,696 KB
testcase_17 AC 1,545 ms
45,764 KB
testcase_18 AC 1,700 ms
45,696 KB
testcase_19 AC 1,683 ms
45,700 KB
testcase_20 AC 70 ms
45,824 KB
testcase_21 AC 72 ms
45,824 KB
testcase_22 AC 1,655 ms
45,704 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 71 ms
45,768 KB
testcase_27 AC 71 ms
45,696 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
cnt=[0]*4500001
for i in range(1,n+1):
    for j in range(1,n+1):
        s=j*j-i*i+d
        if s>=0:
            cnt[s]+=1
ans=0
for i in range(1,n+1):
    ans+=cnt[2*i*i]
for i in range(1,n+1):
    for j in range(i+1,n+1):
        ans+=2*cnt[i*i+j*j]
print(ans)
0