結果

問題 No.800 四平方定理
ユーザー heno239heno239
提出日時 2019-03-15 16:14:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 289 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-07-01 19:51:49
合計ジャッジ時間 33,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
81,024 KB
testcase_01 AC 111 ms
80,896 KB
testcase_02 AC 104 ms
80,768 KB
testcase_03 AC 106 ms
81,024 KB
testcase_04 AC 104 ms
80,768 KB
testcase_05 AC 105 ms
80,896 KB
testcase_06 AC 116 ms
81,024 KB
testcase_07 AC 112 ms
80,768 KB
testcase_08 AC 119 ms
81,024 KB
testcase_09 AC 112 ms
80,768 KB
testcase_10 AC 1,103 ms
80,768 KB
testcase_11 AC 1,190 ms
80,768 KB
testcase_12 AC 1,214 ms
81,024 KB
testcase_13 AC 1,098 ms
81,024 KB
testcase_14 AC 1,174 ms
80,896 KB
testcase_15 AC 1,215 ms
80,896 KB
testcase_16 AC 1,184 ms
80,768 KB
testcase_17 AC 1,183 ms
80,768 KB
testcase_18 AC 1,260 ms
80,768 KB
testcase_19 AC 1,296 ms
80,768 KB
testcase_20 AC 87 ms
80,896 KB
testcase_21 AC 87 ms
80,896 KB
testcase_22 AC 1,273 ms
80,768 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 86 ms
80,896 KB
testcase_27 AC 86 ms
80,896 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,959 ms
80,896 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  n,d=map(int,input().split())
  cnt=[0]*9000001
  for i in range(1,n+1):
      for j in range(1,n+1):
          s=i*i-j*j+d
          if s>=0:
              cnt[s]+=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