結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
73,088 KB
testcase_01 AC 107 ms
72,960 KB
testcase_02 AC 97 ms
72,960 KB
testcase_03 AC 97 ms
73,216 KB
testcase_04 AC 97 ms
73,088 KB
testcase_05 AC 101 ms
72,960 KB
testcase_06 AC 109 ms
72,960 KB
testcase_07 AC 112 ms
72,960 KB
testcase_08 AC 119 ms
73,088 KB
testcase_09 AC 105 ms
72,960 KB
testcase_10 AC 1,007 ms
73,088 KB
testcase_11 AC 1,089 ms
73,216 KB
testcase_12 AC 1,130 ms
73,212 KB
testcase_13 AC 917 ms
72,960 KB
testcase_14 AC 989 ms
72,960 KB
testcase_15 AC 1,120 ms
72,960 KB
testcase_16 AC 992 ms
73,088 KB
testcase_17 AC 989 ms
72,960 KB
testcase_18 AC 1,213 ms
73,088 KB
testcase_19 AC 1,219 ms
73,216 KB
testcase_20 AC 81 ms
73,088 KB
testcase_21 AC 81 ms
73,216 KB
testcase_22 AC 1,228 ms
72,960 KB
testcase_23 AC 1,975 ms
72,960 KB
testcase_24 AC 1,677 ms
73,216 KB
testcase_25 AC 1,964 ms
73,216 KB
testcase_26 AC 81 ms
72,960 KB
testcase_27 AC 82 ms
72,960 KB
testcase_28 AC 1,702 ms
73,088 KB
testcase_29 AC 1,875 ms
73,216 KB
testcase_30 AC 1,684 ms
73,216 KB
testcase_31 AC 1,590 ms
73,216 KB
testcase_32 AC 1,737 ms
73,088 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) :
            if(i*i+j*j<=5000000):
                ans+=cnt[i*i+j*j]
    for i in range(1,n+1) :
        ans+=cnt[2*i*i]//2
    print(ans)
solve()
0