結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 15:56:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 324 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 73,388 KB
最終ジャッジ日時 2024-07-01 19:47:50
合計ジャッジ時間 37,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
73,216 KB
testcase_01 AC 114 ms
73,216 KB
testcase_02 AC 102 ms
73,216 KB
testcase_03 AC 105 ms
73,216 KB
testcase_04 AC 102 ms
73,216 KB
testcase_05 AC 106 ms
73,216 KB
testcase_06 AC 119 ms
73,216 KB
testcase_07 AC 119 ms
73,216 KB
testcase_08 AC 128 ms
73,216 KB
testcase_09 AC 113 ms
73,216 KB
testcase_10 AC 1,275 ms
73,216 KB
testcase_11 AC 1,383 ms
73,216 KB
testcase_12 AC 1,439 ms
73,344 KB
testcase_13 AC 1,215 ms
73,216 KB
testcase_14 AC 1,313 ms
73,216 KB
testcase_15 AC 1,437 ms
73,216 KB
testcase_16 AC 1,325 ms
73,216 KB
testcase_17 AC 1,324 ms
73,344 KB
testcase_18 AC 1,528 ms
73,216 KB
testcase_19 AC 1,535 ms
73,216 KB
testcase_20 AC 82 ms
73,216 KB
testcase_21 AC 82 ms
73,216 KB
testcase_22 AC 1,539 ms
73,216 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 80 ms
73,344 KB
testcase_27 AC 81 ms
73,344 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n,d=map(int,input().split())
    MAX=8000001
    cnt=[0]*MAX
    for i in range(1,n+1) :
        for j in range(1,n+1) :
            if i*i-j*j+d>0 :
                cnt[i*i-j*j+d]+=1;
    ans=0
    for i in range(1,n+1) :
        for j in range(1,n+1) :
            ans+=cnt[i*i+j*j]
    print(ans)
solve()
0