結果

問題 No.2979 直角三角形の個数
ユーザー むつあるむつある
提出日時 2024-12-04 00:38:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 171 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 119,296 KB
最終ジャッジ日時 2024-12-04 00:40:42
合計ジャッジ時間 46,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,628 KB
testcase_01 AC 34 ms
58,404 KB
testcase_02 AC 36 ms
57,344 KB
testcase_03 AC 39 ms
112,396 KB
testcase_04 AC 34 ms
112,768 KB
testcase_05 AC 34 ms
57,856 KB
testcase_06 AC 34 ms
60,028 KB
testcase_07 AC 42 ms
57,728 KB
testcase_08 AC 46 ms
119,296 KB
testcase_09 AC 40 ms
64,384 KB
testcase_10 AC 49 ms
61,440 KB
testcase_11 AC 40 ms
60,604 KB
testcase_12 AC 78 ms
60,400 KB
testcase_13 AC 61 ms
60,416 KB
testcase_14 AC 576 ms
60,544 KB
testcase_15 AC 579 ms
60,544 KB
testcase_16 AC 3,309 ms
61,056 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 35 ms
51,584 KB
testcase_25 AC 35 ms
51,968 KB
testcase_26 AC 34 ms
52,224 KB
testcase_27 AC 156 ms
60,800 KB
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())

ans=0
for i in range(1,int(n**.5)+1,2):
  for j in range(1,i,2):
    if math.gcd(i,j)!=1:
      continue
    ans+=n//(i**2+i*j)
    
print(ans)
0