結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 16:05:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,726 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 73,216 KB
最終ジャッジ日時 2024-07-01 19:49:58
合計ジャッジ時間 25,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
72,960 KB
testcase_01 AC 101 ms
72,960 KB
testcase_02 AC 97 ms
72,960 KB
testcase_03 AC 96 ms
72,960 KB
testcase_04 AC 97 ms
73,088 KB
testcase_05 AC 98 ms
73,216 KB
testcase_06 AC 104 ms
73,088 KB
testcase_07 AC 110 ms
73,088 KB
testcase_08 AC 114 ms
73,216 KB
testcase_09 AC 102 ms
73,088 KB
testcase_10 AC 870 ms
72,960 KB
testcase_11 AC 904 ms
72,960 KB
testcase_12 AC 1,012 ms
73,088 KB
testcase_13 AC 788 ms
73,088 KB
testcase_14 AC 843 ms
72,960 KB
testcase_15 AC 974 ms
72,960 KB
testcase_16 AC 851 ms
72,960 KB
testcase_17 AC 845 ms
72,960 KB
testcase_18 AC 1,068 ms
73,088 KB
testcase_19 AC 1,074 ms
72,960 KB
testcase_20 AC 82 ms
73,088 KB
testcase_21 AC 82 ms
72,960 KB
testcase_22 AC 1,067 ms
73,088 KB
testcase_23 AC 1,726 ms
73,216 KB
testcase_24 AC 1,464 ms
72,960 KB
testcase_25 AC 1,718 ms
72,960 KB
testcase_26 AC 82 ms
73,216 KB
testcase_27 AC 82 ms
72,960 KB
testcase_28 AC 1,450 ms
72,960 KB
testcase_29 AC 1,657 ms
73,088 KB
testcase_30 AC 1,471 ms
72,960 KB
testcase_31 AC 1,365 ms
73,124 KB
testcase_32 AC 1,505 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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