結果

問題 No.1626 三角形の構築
ユーザー convexineqconvexineq
提出日時 2021-07-23 22:30:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 887 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 68,300 KB
最終ジャッジ日時 2024-10-12 11:34:57
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
68,300 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_list(N): #約数のリスト
    if N == 1: return [1]
    res = []
    for i in range(1,N):
        if i*i >= N: break
        if N%i == 0:
            res.append(i)
            res.append(N//i)
    if i*i == N: res.append(i)
    return sorted(res)

def solve(n,t):
    if t%2: return []
    t //= 2
    N = n*n
    div = divisor_list(N)
    # 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