結果

問題 No.2979 直角三角形の個数
ユーザー lif4635lif4635
提出日時 2024-12-03 03:21:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,132 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 131,200 KB
最終ジャッジ日時 2024-12-03 03:22:21
合計ジャッジ時間 44,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
129,408 KB
testcase_01 AC 38 ms
57,984 KB
testcase_02 AC 38 ms
61,476 KB
testcase_03 AC 37 ms
57,856 KB
testcase_04 AC 37 ms
60,148 KB
testcase_05 AC 38 ms
130,048 KB
testcase_06 AC 40 ms
58,112 KB
testcase_07 AC 38 ms
131,200 KB
testcase_08 AC 49 ms
66,944 KB
testcase_09 AC 49 ms
68,884 KB
testcase_10 AC 70 ms
76,800 KB
testcase_11 AC 53 ms
72,772 KB
testcase_12 AC 97 ms
81,664 KB
testcase_13 AC 86 ms
76,416 KB
testcase_14 AC 311 ms
76,672 KB
testcase_15 AC 286 ms
76,984 KB
testcase_16 AC 1,267 ms
76,544 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 38 ms
52,608 KB
testcase_25 AC 37 ms
52,224 KB
testcase_26 AC 38 ms
52,480 KB
testcase_27 AC 133 ms
77,056 KB
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt

n = int(input())

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

from itertools import permutations

def calc(x,fp):
    res = x
    l = 1
    while l <= len(fp):
        tmp = 1
        for i in range(l-1):
            tmp *= fp[i]
        
        while tmp * fp[-1] > x:
            fp.pop()
            if len(fp) < l:
                return res
        
        for p in permutations(fp,l):
            tmp = 1
            for i in p:
                tmp *= i
            if l%2:
                res -= x//tmp
            else:
                res += x//tmp

ans = 0
#pの全探索
const = 10**4
for p in range(2,rootn + 1):
    fp = []
    p_ = p
    while minp[p_] != 0:
        mp = minp[p_]
        fp.append(mp)
        while p_%mp == 0:
            p_ //= mp
    
    # q は奇数
    # p < q < 2p
    # maxの値はm以下
    m = n//(2*p)
    
    lim = isqrt(m) #ここを境界とします
    lq = 2 * ((p+1)//2) + 1
    rq = min(m+1,2*p)
    if rq - lq <= const:
        for r in range(lq,rq,2):
            if not (0 < r - p < p):
                continue
            for i in fp:
                if r%i == 0:
                    break
            else:
                ans += m//r #この倍数まで大丈夫
    else:
        #この時あきらかに const <= lq
        olq,orq = lq,rq
        for res in range(max(m//orq,1), m//olq+1):
            lq = m // (res + 1)
            rq = m // res
            #加算されるのがlの範囲
            lq = max(lq,olq-1)
            rq = min(rq,orq-1)
            if lq >= rq:
                continue
            # print(res,p,lq,rq)
            #この内倍数でもなければ2の倍数でもないもの
            fp_ = [2] + fp
            while fp_ and fp_[-1] > rq:
                fp_.pop()
            
            assert fp_.count(2) <= 1
            cnt = calc(rq,fp_[:]) - calc(lq,fp_[:])
            ans += cnt*res                
        
print(ans) 
0