結果

問題 No.800 四平方定理
ユーザー hanamihanami
提出日時 2019-04-09 20:03:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 306 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-07-04 19:01:17
合計ジャッジ時間 35,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
73,148 KB
testcase_01 AC 138 ms
73,108 KB
testcase_02 AC 128 ms
73,216 KB
testcase_03 AC 134 ms
73,088 KB
testcase_04 AC 131 ms
73,056 KB
testcase_05 AC 134 ms
73,120 KB
testcase_06 AC 143 ms
73,048 KB
testcase_07 AC 135 ms
73,040 KB
testcase_08 AC 149 ms
73,188 KB
testcase_09 AC 139 ms
73,156 KB
testcase_10 AC 1,188 ms
73,100 KB
testcase_11 AC 1,302 ms
73,088 KB
testcase_12 AC 1,327 ms
73,088 KB
testcase_13 AC 1,155 ms
73,104 KB
testcase_14 AC 1,253 ms
73,104 KB
testcase_15 AC 1,279 ms
73,216 KB
testcase_16 AC 1,314 ms
73,216 KB
testcase_17 AC 1,256 ms
73,216 KB
testcase_18 AC 1,350 ms
73,088 KB
testcase_19 AC 1,444 ms
73,336 KB
testcase_20 AC 102 ms
73,036 KB
testcase_21 AC 105 ms
73,088 KB
testcase_22 AC 1,368 ms
73,192 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 103 ms
73,088 KB
testcase_27 AC 109 ms
73,100 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
zw_list=[0]*8000001
ans=0
p_list=[]
for i in range(1,N+1):
    p_list.append(i*i)
for z in p_list:
    for w in p_list:
        cal=D-z+w
        if cal>0:
            zw_list[cal]+=1            
for x in p_list:
    for y in p_list:
        ans+=zw_list[x+y]
print(ans)       
0