結果

問題 No.2979 直角三角形の個数
ユーザー lif4635lif4635
提出日時 2024-12-03 00:34:30
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 437 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 931,076 KB
最終ジャッジ日時 2024-12-03 00:35:38
合計ジャッジ時間 68,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,032 KB
testcase_01 MLE -
testcase_02 AC 43 ms
56,276 KB
testcase_03 MLE -
testcase_04 AC 44 ms
56,824 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 360 ms
139,500 KB
testcase_11 AC 138 ms
86,912 KB
testcase_12 AC 1,653 ms
399,384 KB
testcase_13 AC 744 ms
221,284 KB
testcase_14 TLE -
testcase_15 TLE -
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 131 ms
54,404 KB
testcase_25 AC 42 ms
55,440 KB
testcase_26 AC 41 ms
54,896 KB
testcase_27 TLE -
testcase_28 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache
from math import isqrt

@cache
def gcd(a,b):
    if b == 0:
        return a
    return gcd(b,a%b)

n = int(input())
#定数倍を考える
# #sqrt(n)以上のとき
ans = 0
for p in range(1,isqrt(n) + 1):
    f = p%2 + 1
    #遇奇の不一致
    for q in range(f,p,2):
        r = 2 * p * (p + q)
        if gcd(p,q) != 1:
            continue
        ans += n//r #この倍数まで大丈夫

print(ans) 
0