結果

問題 No.1143 面積Nの三角形
ユーザー 37zigen37zigen
提出日時 2020-08-03 02:58:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 800 ms
コード長 576 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-21 07:30:01
合計ジャッジ時間 2,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 47 ms
52,224 KB
testcase_02 AC 45 ms
58,112 KB
testcase_03 AC 52 ms
61,312 KB
testcase_04 AC 45 ms
52,736 KB
testcase_05 AC 61 ms
61,056 KB
testcase_06 AC 66 ms
62,464 KB
testcase_07 AC 80 ms
65,280 KB
testcase_08 AC 87 ms
66,304 KB
testcase_09 AC 87 ms
65,536 KB
testcase_10 AC 74 ms
62,464 KB
testcase_11 AC 122 ms
73,728 KB
testcase_12 AC 122 ms
72,960 KB
testcase_13 AC 126 ms
73,728 KB
testcase_14 AC 72 ms
62,464 KB
testcase_15 AC 46 ms
51,968 KB
testcase_16 AC 166 ms
75,904 KB
testcase_17 AC 158 ms
76,160 KB
testcase_18 AC 137 ms
75,776 KB
testcase_19 AC 141 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def issqrt(n):
    x = int(round(math.sqrt(n)))
    return ((x * x) == n, x)
cnt = 0
N = int(input())
N2 = N * N
div = [x for x in range(1,N+1) if N2 % x == 0]
for u in div:
    for v in div:
        if u > v or N2 % (u * v) != 0:
            continue
        n = N2 // u // v
        m = (u + v) * (u + v) + 4 * n
        f = issqrt(m)
        if not f[0]:
            continue
        m = f[1]
        if (-(u + v) + m) % 2 != 0:
            continue
        w = (-(u + v) + m) // 2
        if not (u <= v <= w):
            continue
        cnt += 1
print(cnt)
0