結果

問題 No.1143 面積Nの三角形
ユーザー hotman78hotman78
提出日時 2020-07-31 18:30:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 355 ms / 800 ms
コード長 605 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2024-07-06 14:33:09
合計ジャッジ時間 3,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,128 KB
testcase_01 AC 49 ms
61,316 KB
testcase_02 AC 52 ms
61,948 KB
testcase_03 AC 62 ms
65,700 KB
testcase_04 AC 53 ms
63,528 KB
testcase_05 AC 61 ms
66,816 KB
testcase_06 AC 65 ms
67,932 KB
testcase_07 AC 103 ms
76,752 KB
testcase_08 AC 94 ms
75,224 KB
testcase_09 AC 115 ms
76,792 KB
testcase_10 AC 76 ms
67,892 KB
testcase_11 AC 204 ms
76,904 KB
testcase_12 AC 209 ms
76,800 KB
testcase_13 AC 217 ms
76,964 KB
testcase_14 AC 75 ms
67,312 KB
testcase_15 AC 40 ms
52,712 KB
testcase_16 AC 350 ms
76,840 KB
testcase_17 AC 355 ms
76,816 KB
testcase_18 AC 264 ms
76,688 KB
testcase_19 AC 262 ms
76,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())
v=[]
for i  in range(1,n+1):
    if (n*n)%i==0:
        v.append(i)
ans=0
for d in v:
    for e in v:
        if e<d:
            continue
        if (n*n)%(d*e):
            continue
        b=d+e
        c=n*n/d/e
        k=b*b+c*4
        if k<0:
            continue
        tmp=max(0,math.sqrt(k)-100)
        sqk=-1
        for i in range(200):
            if (tmp+i)*(tmp+i)==k:
                sqk=tmp+i
        if sqk==-1:
            continue
        if (sqk+b)%2:
            continue
        f=(sqk-b)/2
        if f<e:
            continue
        ans+=1
print(ans)
0