結果

問題 No.1143 面積Nの三角形
ユーザー tamatotamato
提出日時 2020-07-31 23:05:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,383 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 96,792 KB
最終ジャッジ日時 2024-07-06 20:52:06
合計ジャッジ時間 10,320 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,732 KB
testcase_01 AC 49 ms
66,296 KB
testcase_02 AC 50 ms
67,872 KB
testcase_03 AC 52 ms
70,572 KB
testcase_04 AC 54 ms
69,768 KB
testcase_05 AC 60 ms
71,368 KB
testcase_06 AC 65 ms
71,520 KB
testcase_07 AC 147 ms
76,712 KB
testcase_08 AC 285 ms
78,100 KB
testcase_09 AC 289 ms
77,388 KB
testcase_10 AC 181 ms
76,684 KB
testcase_11 AC 702 ms
82,652 KB
testcase_12 AC 782 ms
82,676 KB
testcase_13 AC 762 ms
82,096 KB
testcase_14 AC 141 ms
76,100 KB
testcase_15 AC 30 ms
53,268 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    NN = 16*N*N
    memo = {}
    def divisors(n):
        if n in memo:
            return memo[n]

        ret = []
        for i in range(1, n+1):
            if i*i > n:
                break
            if n % i == 0:
                ret.append(i)
                ret.append(n // i)
        if ret[-1] * ret[-1] == n:
            ret.pop()
        ret.sort()
        memo[n] = ret
        return ret

    ans = 0
    div = divisors(NN)
    for L in div:
        if L**4 < NN:
            continue
        ABC = NN // L
        divABC = divisors(ABC)
        for A in divABC:
            if A**3 < ABC:
                continue
            BC = ABC // A
            divBC = divisors(BC)
            for B in divBC:
                if B**2 < BC:
                    continue
                C = BC // B

                # check
                if not A >= B >= C:
                    continue
                if not L%2 == A%2 == B%2 == C%2:
                    continue
                a = (L-A) // 2
                b = (L-B) // 2
                c = (L-C) // 2
                if not L == a+b+c:
                    continue
                if a + b <= c:
                    continue
                ans += 1
    print(ans)


if __name__ == '__main__':
    main()
0