結果

問題 No.2790 Athena 3
ユーザー ゼットゼット
提出日時 2024-06-21 21:26:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-06-21 21:26:03
合計ジャッジ時間 1,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,248 KB
testcase_01 AC 36 ms
53,528 KB
testcase_02 AC 35 ms
52,956 KB
testcase_03 AC 35 ms
52,820 KB
testcase_04 AC 33 ms
54,080 KB
testcase_05 AC 33 ms
52,260 KB
testcase_06 AC 34 ms
52,876 KB
testcase_07 AC 36 ms
52,696 KB
testcase_08 AC 33 ms
54,324 KB
testcase_09 AC 34 ms
52,068 KB
testcase_10 AC 34 ms
52,460 KB
testcase_11 AC 38 ms
52,456 KB
testcase_12 AC 35 ms
52,660 KB
testcase_13 AC 34 ms
53,684 KB
testcase_14 AC 35 ms
52,344 KB
testcase_15 AC 35 ms
54,084 KB
testcase_16 AC 35 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x1,y1,x2,y2,x3,y3=map(int,input().split())
def f(a,b,c,d):
  ans=abs(a*d-b*c)
  return ans/2
from itertools import product
result=0
for A in product(range(4),repeat=3):
  v=[x1,y1,x2,y2,x3,y3]
  for i in range(3):
    if A[i]==0:
      v[2*i]-=1
    elif A[i]==1:
      v[2*i]+=1
    elif A[i]==2:
      v[2*i+1]+=1
    else:
      v[2*i+1]-=1
  a,b,c,d=v[2]-v[0],v[3]-v[1],v[4]-v[0],v[5]-v[1]
  ans=f(a,b,c,d)
  result=max(result,ans)
print(result)
0