結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,472 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 64 ms
64,512 KB
testcase_04 AC 93 ms
78,592 KB
testcase_05 AC 87 ms
78,592 KB
testcase_06 AC 64 ms
70,272 KB
testcase_07 AC 44 ms
58,624 KB
testcase_08 AC 63 ms
68,992 KB
testcase_09 AC 66 ms
72,448 KB
testcase_10 AC 78 ms
77,056 KB
testcase_11 AC 83 ms
78,464 KB
testcase_12 AC 105 ms
83,328 KB
testcase_13 AC 56 ms
65,024 KB
testcase_14 AC 908 ms
273,508 KB
testcase_15 AC 2,469 ms
412,100 KB
testcase_16 MLE -
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)]
d={}
for fx in [1,-1]:
  for fy in [1,-1]:
    for i in range(n):
      for j in range(m):
        cx,cy=c[i]
        bx,by=b[j]
        v=(fx,fy,bx-cx*fx,by-cy*fy)
        if v not in d:
          d[v]=0
        d[v]+=p[i]
print(max(d[v] for v in d))
0