結果
問題 | No.1143 面積Nの三角形 |
ユーザー | tamato |
提出日時 | 2020-07-31 23:13:38 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,480 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 82,760 KB |
実行使用メモリ | 90,608 KB |
最終ジャッジ日時 | 2024-07-06 21:11:28 |
合計ジャッジ時間 | 9,675 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,888 KB |
testcase_01 | AC | 41 ms
63,968 KB |
testcase_02 | AC | 51 ms
68,912 KB |
testcase_03 | AC | 53 ms
68,776 KB |
testcase_04 | AC | 47 ms
64,844 KB |
testcase_05 | AC | 59 ms
71,904 KB |
testcase_06 | AC | 60 ms
71,816 KB |
testcase_07 | AC | 149 ms
77,352 KB |
testcase_08 | AC | 272 ms
77,668 KB |
testcase_09 | AC | 287 ms
77,468 KB |
testcase_10 | AC | 185 ms
76,692 KB |
testcase_11 | AC | 615 ms
82,304 KB |
testcase_12 | AC | 709 ms
82,696 KB |
testcase_13 | AC | 746 ms
82,800 KB |
testcase_14 | AC | 146 ms
76,544 KB |
testcase_15 | AC | 32 ms
53,848 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
ソースコード
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(reverse=True) memo[n] = ret return ret ans = 0 div = divisors(NN) for L in div: if L**4 < NN: break ABC = NN // L divABC = divisors(ABC) for A in divABC: if A**3 < ABC: break if A%2 != L%2: continue BC = ABC // A divBC = divisors(BC) for B in divBC: if B**2 < BC: break C = BC // B if B%2 != L%2: continue if C%2 != L%2: continue # check if not A >= B >= C: 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()