結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー 👑 KazunKazun
提出日時 2021-07-08 16:03:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 675 ms / 3,000 ms
コード長 513 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 273,500 KB
最終ジャッジ日時 2024-10-07 08:42:11
合計ジャッジ時間 13,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,820 KB
testcase_01 AC 38 ms
53,156 KB
testcase_02 AC 38 ms
53,428 KB
testcase_03 AC 46 ms
61,952 KB
testcase_04 AC 53 ms
64,816 KB
testcase_05 AC 54 ms
66,464 KB
testcase_06 AC 48 ms
61,960 KB
testcase_07 AC 38 ms
53,196 KB
testcase_08 AC 45 ms
61,112 KB
testcase_09 AC 47 ms
61,572 KB
testcase_10 AC 51 ms
63,320 KB
testcase_11 AC 52 ms
64,320 KB
testcase_12 AC 57 ms
68,624 KB
testcase_13 AC 43 ms
60,332 KB
testcase_14 AC 179 ms
128,312 KB
testcase_15 AC 450 ms
251,472 KB
testcase_16 AC 569 ms
266,436 KB
testcase_17 AC 443 ms
251,552 KB
testcase_18 AC 352 ms
192,828 KB
testcase_19 AC 535 ms
267,392 KB
testcase_20 AC 199 ms
130,960 KB
testcase_21 AC 516 ms
266,160 KB
testcase_22 AC 283 ms
155,412 KB
testcase_23 AC 290 ms
160,408 KB
testcase_24 AC 675 ms
266,052 KB
testcase_25 AC 665 ms
273,344 KB
testcase_26 AC 632 ms
266,320 KB
testcase_27 AC 670 ms
273,500 KB
testcase_28 AC 675 ms
273,372 KB
testcase_29 AC 667 ms
265,640 KB
testcase_30 AC 640 ms
273,152 KB
testcase_31 AC 656 ms
265,872 KB
testcase_32 AC 673 ms
273,452 KB
testcase_33 AC 659 ms
264,056 KB
testcase_34 AC 44 ms
59,472 KB
testcase_35 AC 38 ms
54,000 KB
testcase_36 AC 37 ms
52,544 KB
testcase_37 AC 38 ms
52,812 KB
testcase_38 AC 163 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

N,M=map(int,input().split())

P=list(map(int,input().split()))

S=[]
a=[0]*N; b=[0]*N
for i in range(N):
    a[i],b[i]=map(int,input().split())

T=[]
c=[0]*M; d=[0]*M
for j in range(M):
    c[j],d[j]=map(int,input().split())

msk=1<<32
X=0
for s,t in [(1,1),(1,-1),(-1,1),(-1,-1)]:
    D={}
    for i in range(N):
        for j in range(M):
            u=c[j]-s*a[i]; v=d[j]-t*b[i]
            g=u*msk+v
            D[g]=D.get(g,0)+P[i]
    X=max(X,max(D.values()))

print(X)
0