結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 15:21:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 138,368 KB
最終ジャッジ日時 2024-07-01 19:43:50
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
121,984 KB
testcase_01 AC 73 ms
123,648 KB
testcase_02 AC 71 ms
122,752 KB
testcase_03 AC 72 ms
123,392 KB
testcase_04 AC 71 ms
123,648 KB
testcase_05 AC 70 ms
123,136 KB
testcase_06 AC 71 ms
123,264 KB
testcase_07 AC 73 ms
125,824 KB
testcase_08 AC 71 ms
121,728 KB
testcase_09 AC 70 ms
123,264 KB
testcase_10 AC 151 ms
138,036 KB
testcase_11 AC 155 ms
137,344 KB
testcase_12 AC 164 ms
137,856 KB
testcase_13 AC 145 ms
137,472 KB
testcase_14 AC 152 ms
137,856 KB
testcase_15 AC 167 ms
137,872 KB
testcase_16 AC 148 ms
137,856 KB
testcase_17 AC 150 ms
138,368 KB
testcase_18 AC 176 ms
138,196 KB
testcase_19 AC 182 ms
137,728 KB
testcase_20 AC 61 ms
114,304 KB
testcase_21 AC 62 ms
114,304 KB
testcase_22 AC 179 ms
137,216 KB
testcase_23 AC 269 ms
137,728 KB
testcase_24 AC 228 ms
137,908 KB
testcase_25 AC 270 ms
137,960 KB
testcase_26 AC 64 ms
114,432 KB
testcase_27 AC 61 ms
114,304 KB
testcase_28 AC 238 ms
137,984 KB
testcase_29 AC 255 ms
137,600 KB
testcase_30 AC 229 ms
137,984 KB
testcase_31 AC 217 ms
137,856 KB
testcase_32 AC 233 ms
137,472 KB
権限があれば一括ダウンロードができます

ソースコード

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) :
            cnt[i*i+j*j]+=1
    ans=0
    for i in range(1,n+1) :
        for j in range(1,n+1) :
            if i*i-j*j+d>0 :
                ans+=cnt[i*i-j*j+d]
    print(ans)
solve()
0