結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-10 03:03:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 373 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-11-10 03:03:14
合計ジャッジ時間 7,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,088 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 120 ms
76,512 KB
testcase_04 AC 199 ms
77,440 KB
testcase_05 AC 231 ms
77,696 KB
testcase_06 AC 127 ms
77,856 KB
testcase_07 AC 64 ms
63,232 KB
testcase_08 AC 105 ms
76,544 KB
testcase_09 AC 125 ms
76,476 KB
testcase_10 AC 148 ms
77,536 KB
testcase_11 AC 190 ms
77,904 KB
testcase_12 AC 314 ms
77,056 KB
testcase_13 AC 103 ms
76,800 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
p=list(map(int,input().split()))
c=[tuple(map(int,input().split())) for i in range(n)]
b=[tuple(map(int,input().split())) for i in range(m)]
bs=set(b)
g=0
for fx in [1,-1]:
  for fy in [1,-1]:
    for cox,coy in c:
      for box,boy in b:
        g=max(g,sum(p[i]*(((c[i][0]-cox)*fx+box,(c[i][1]-coy)*fy+boy) in bs) for i in range(n)))
print(g)
0