結果

問題 No.1447 Greedy MtSaka
ユーザー 👑 KazunKazun
提出日時 2021-04-19 04:50:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 53,980 KB
最終ジャッジ日時 2024-07-04 04:57:24
合計ジャッジ時間 1,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,452 KB
testcase_01 AC 38 ms
52,528 KB
testcase_02 AC 38 ms
52,408 KB
testcase_03 AC 38 ms
52,612 KB
testcase_04 AC 37 ms
52,088 KB
testcase_05 AC 38 ms
52,644 KB
testcase_06 AC 37 ms
52,360 KB
testcase_07 AC 38 ms
53,564 KB
testcase_08 AC 37 ms
53,068 KB
testcase_09 AC 38 ms
53,424 KB
testcase_10 AC 37 ms
53,096 KB
testcase_11 AC 36 ms
52,332 KB
testcase_12 AC 35 ms
52,684 KB
testcase_13 AC 37 ms
52,084 KB
testcase_14 AC 37 ms
53,980 KB
testcase_15 AC 37 ms
53,408 KB
testcase_16 AC 37 ms
52,828 KB
testcase_17 AC 37 ms
52,136 KB
testcase_18 AC 37 ms
52,340 KB
testcase_19 AC 37 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

P=[]
for _ in range(N):
    x,y=map(int,input().split())
    P.append((x,y))

X,Y=P[0]

V=[]
for x,y in P[1:]:
    V.append((x-X,y-Y))

S=0
for i in range(N-2):
    ux,uy=V[i]
    vx,vy=V[i+1]
    S+=abs(ux*vy-uy*vx)
print(S)
0