結果

問題 No.1626 三角形の構築
ユーザー convexineqconvexineq
提出日時 2021-07-23 22:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 987 ms / 2,000 ms
コード長 1,290 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-10-12 11:35:30
合計ジャッジ時間 5,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,776 KB
testcase_01 AC 139 ms
76,016 KB
testcase_02 AC 44 ms
58,580 KB
testcase_03 AC 51 ms
60,928 KB
testcase_04 AC 54 ms
62,464 KB
testcase_05 AC 59 ms
62,336 KB
testcase_06 AC 47 ms
60,160 KB
testcase_07 AC 110 ms
70,400 KB
testcase_08 AC 145 ms
71,936 KB
testcase_09 AC 179 ms
75,904 KB
testcase_10 AC 141 ms
72,960 KB
testcase_11 AC 159 ms
72,704 KB
testcase_12 AC 99 ms
70,016 KB
testcase_13 AC 86 ms
68,352 KB
testcase_14 AC 106 ms
65,536 KB
testcase_15 AC 125 ms
76,288 KB
testcase_16 AC 152 ms
73,216 KB
testcase_17 AC 129 ms
71,808 KB
testcase_18 AC 108 ms
70,912 KB
testcase_19 AC 133 ms
70,656 KB
testcase_20 AC 148 ms
73,448 KB
testcase_21 AC 137 ms
76,032 KB
testcase_22 AC 198 ms
76,352 KB
testcase_23 AC 164 ms
74,112 KB
testcase_24 AC 987 ms
80,000 KB
testcase_25 AC 38 ms
52,096 KB
testcase_26 AC 67 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factorize(N): #素因数分解
    exponent = 0
    while N%2 == 0:
        exponent += 1
        N //= 2
    if exponent: factorization = [[2,exponent]]
    else: factorization = []
    i=1
    while i*i <=N:
        i += 2
        if N%i: continue
        exponent = 0
        while N%i == 0:
            exponent += 1
            N //= i
        factorization.append([i,exponent])
    if N!= 1: factorization.append([N,1])
    assert N != 0, "zero"
    return factorization

def solve(n,t):
    if t%2: return []
    t //= 2
    N = n*n
    div = [1]
    for k,v in prime_factorize(n):
        ndiv = div[:]
        c = k
        for i in range(2*v):
            ndiv += [i*c for i in div]
            c *= k
        div = ndiv
    div.sort()
    # pqr(p+q+r) = n*n なる (p,q,r)を求める
    ans = 0
    L = len(div)
    res = []
    for i,p in enumerate(div):
        if p*p > n: break
        for j in range(i,L):
            q = div[j]
            if p*q*q*(p+q+q) > N: break
            if N%(p*q): continue
            r = t-p-q
            if r*t == N//p//q:
                res.append((p,q,r))
    return res

T = int(input())
for _ in range(T):
    s,t = map(int,input().split())
    r = solve(s,t)
    print(len(r))
    for a,b,c in r:
        print(a+b,b+c,c+a)
0