結果

問題 No.800 四平方定理
ユーザー _matumo__matumo_
提出日時 2020-08-25 18:13:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,293 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 73,332 KB
最終ジャッジ日時 2024-11-06 11:37:42
合計ジャッジ時間 18,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
73,036 KB
testcase_01 AC 70 ms
73,156 KB
testcase_02 AC 65 ms
73,104 KB
testcase_03 AC 66 ms
73,216 KB
testcase_04 AC 66 ms
73,068 KB
testcase_05 AC 68 ms
73,228 KB
testcase_06 AC 71 ms
73,188 KB
testcase_07 AC 71 ms
72,924 KB
testcase_08 AC 76 ms
72,928 KB
testcase_09 AC 70 ms
72,984 KB
testcase_10 AC 619 ms
73,156 KB
testcase_11 AC 649 ms
73,172 KB
testcase_12 AC 691 ms
73,020 KB
testcase_13 AC 552 ms
72,944 KB
testcase_14 AC 610 ms
73,244 KB
testcase_15 AC 690 ms
73,252 KB
testcase_16 AC 601 ms
73,028 KB
testcase_17 AC 598 ms
72,956 KB
testcase_18 AC 765 ms
73,168 KB
testcase_19 AC 772 ms
73,176 KB
testcase_20 AC 56 ms
72,984 KB
testcase_21 AC 57 ms
72,912 KB
testcase_22 AC 765 ms
73,096 KB
testcase_23 AC 1,273 ms
73,268 KB
testcase_24 AC 1,066 ms
73,036 KB
testcase_25 AC 1,293 ms
73,088 KB
testcase_26 AC 58 ms
73,056 KB
testcase_27 AC 58 ms
73,076 KB
testcase_28 AC 1,089 ms
73,192 KB
testcase_29 AC 1,212 ms
73,332 KB
testcase_30 AC 1,084 ms
73,000 KB
testcase_31 AC 1,007 ms
72,988 KB
testcase_32 AC 1,123 ms
73,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N,D=map(int,input().split())
    v=list([n*n for n in range(1,N+1)])
    p=[0]*8000001
    for x in v: 
        for y in v:  p[x+y]+=1
    sm=0
    for w in v:
        for z in v:
            n=w-z+D
            if n<1: break
            sm+=p[n]
    print(sm)
main()
0