結果

問題 No.2979 直角三角形の個数
ユーザー lif4635lif4635
提出日時 2024-12-03 00:49:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 839 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 148,608 KB
最終ジャッジ日時 2024-12-03 00:50:32
合計ジャッジ時間 44,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,672 KB
testcase_01 AC 51 ms
59,904 KB
testcase_02 AC 51 ms
60,160 KB
testcase_03 AC 51 ms
131,840 KB
testcase_04 AC 51 ms
59,904 KB
testcase_05 AC 52 ms
132,992 KB
testcase_06 AC 52 ms
60,416 KB
testcase_07 AC 54 ms
133,888 KB
testcase_08 AC 63 ms
68,480 KB
testcase_09 AC 61 ms
145,792 KB
testcase_10 AC 85 ms
75,904 KB
testcase_11 AC 66 ms
148,608 KB
testcase_12 AC 110 ms
82,304 KB
testcase_13 AC 97 ms
75,264 KB
testcase_14 AC 303 ms
76,800 KB
testcase_15 AC 297 ms
76,800 KB
testcase_16 AC 1,259 ms
77,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 50 ms
55,168 KB
testcase_25 AC 51 ms
54,528 KB
testcase_26 AC 51 ms
54,784 KB
testcase_27 AC 143 ms
76,672 KB
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)以上のとき

rootn = isqrt(n)
minp = [0]*(rootn+1)

for i in range(3,rootn+1,2):
    if minp[i] != 0:
        continue
    for j in range(i,rootn+1,i):
        if minp[j] == 0:
            minp[j] = i

ans = 0
for p in range(2,rootn + 1):
    f = p%2 + 1
    #遇奇の不一致
    fp = []
    p_ = p
    while minp[p_] != 0:
        mp = minp[p_]
        fp.append(mp)
        while p_%mp == 0:
            p_ //= mp
    for q in range(f,p,2):
        r = 2 * p * (p + q)
        if n < r:
            break
        for i in fp:
            if q%i == 0:
                break
        else:
            ans += n//r #この倍数まで大丈夫

print(ans) 
0