結果

問題 No.1143 面積Nの三角形
ユーザー convexineqconvexineq
提出日時 2021-05-12 08:50:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 800 ms
コード長 740 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 71,492 KB
最終ジャッジ日時 2024-09-22 14:22:27
合計ジャッジ時間 2,357 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,500 KB
testcase_01 AC 38 ms
51,940 KB
testcase_02 AC 38 ms
52,712 KB
testcase_03 AC 41 ms
59,268 KB
testcase_04 AC 38 ms
52,572 KB
testcase_05 AC 42 ms
58,716 KB
testcase_06 AC 46 ms
61,276 KB
testcase_07 AC 58 ms
65,296 KB
testcase_08 AC 63 ms
65,932 KB
testcase_09 AC 71 ms
67,068 KB
testcase_10 AC 60 ms
63,628 KB
testcase_11 AC 78 ms
68,324 KB
testcase_12 AC 79 ms
68,008 KB
testcase_13 AC 86 ms
68,012 KB
testcase_14 AC 61 ms
61,756 KB
testcase_15 AC 37 ms
52,540 KB
testcase_16 AC 95 ms
70,608 KB
testcase_17 AC 110 ms
69,924 KB
testcase_18 AC 93 ms
70,232 KB
testcase_19 AC 96 ms
71,492 KB
権限があれば一括ダウンロードができます

ソースコード

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)

n = int(input())
N = n*n
div = divisor_list(N)
# pqr(p+q+r) = n*n なる (p,q,r)を求める
ans = 0
L = len(div)
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
        NN = N//p//q
        for k in range(j,L):
            r = div[k]
            V = r*(p+q+r)
            if V == NN:
                ans += 1
            elif V > NN:
                break
print(ans)
0