結果

問題 No.2979 直角三角形の個数
ユーザー むつあるむつある
提出日時 2024-12-03 23:25:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 296 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 131,048 KB
最終ジャッジ日時 2024-12-03 23:26:42
合計ジャッジ時間 49,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
119,468 KB
testcase_01 AC 38 ms
60,632 KB
testcase_02 AC 41 ms
60,348 KB
testcase_03 AC 39 ms
118,012 KB
testcase_04 AC 40 ms
60,360 KB
testcase_05 AC 40 ms
118,468 KB
testcase_06 AC 46 ms
66,896 KB
testcase_07 AC 42 ms
118,928 KB
testcase_08 AC 51 ms
69,492 KB
testcase_09 AC 50 ms
127,396 KB
testcase_10 AC 71 ms
71,764 KB
testcase_11 AC 55 ms
129,016 KB
testcase_12 AC 124 ms
72,160 KB
testcase_13 AC 90 ms
131,048 KB
testcase_14 AC 901 ms
72,588 KB
testcase_15 AC 869 ms
66,616 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 39 ms
52,808 KB
testcase_25 AC 38 ms
53,120 KB
testcase_26 AC 39 ms
53,608 KB
testcase_27 AC 239 ms
65,236 KB
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())

ans=0
for i in range(1,int(n**.5)+1):
  for j in range(1,i):
    if i**2+i*j>n:
      break
    if i**2-j**2<=2*i*j:
      break
    if math.gcd(i,j)!=1:
      continue
    if j&1 and i&1:
      ans+=n//(i**2+i*j)
    else:
      ans+=n//(2*(i**2+i*j))
    
print(ans)
0