結果

問題 No.1447 Greedy MtSaka
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-05-03 16:07:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-22 06:39:08
合計ジャッジ時間 1,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 26 ms
10,624 KB
testcase_19 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = [[]  for _ in range(N)]

for i in range(N):
    P[i] = list(map(int, input().split()))
    
def calc_area(p, q, r):
    if p[0] - q[0] != 0:
        m = (p[1] - q[1])/(p[0] - q[0])
        y0 = p[1] - m * p[0]
        h = abs(-m*r[0] + r[1] -y0) / pow(1 + pow(m, 2), 0.5)
    else:
        h = abs(p[0] - r[0])
    
    b = pow(pow(p[0] - q[0], 2) + pow(p[1] - q[1], 2), 0.5)
    return b * h

A = 0

#必ず凸三角形なので
for i in range(N-2):
    A += calc_area(P[i + 1], P[i + 2], P[0])

print(int(A))
0