結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-30 10:52:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 682 ms / 3,000 ms
コード長 493 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 273,400 KB
最終ジャッジ日時 2024-10-07 13:31:41
合計ジャッジ時間 12,588 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 43 ms
60,160 KB
testcase_04 AC 49 ms
64,264 KB
testcase_05 AC 52 ms
65,152 KB
testcase_06 AC 48 ms
61,184 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 AC 41 ms
60,416 KB
testcase_09 AC 46 ms
61,568 KB
testcase_10 AC 48 ms
62,976 KB
testcase_11 AC 49 ms
64,512 KB
testcase_12 AC 54 ms
68,864 KB
testcase_13 AC 45 ms
59,904 KB
testcase_14 AC 176 ms
122,892 KB
testcase_15 AC 425 ms
264,116 KB
testcase_16 AC 528 ms
264,324 KB
testcase_17 AC 424 ms
269,828 KB
testcase_18 AC 331 ms
215,984 KB
testcase_19 AC 453 ms
241,792 KB
testcase_20 AC 196 ms
128,616 KB
testcase_21 AC 478 ms
256,632 KB
testcase_22 AC 267 ms
177,416 KB
testcase_23 AC 269 ms
187,824 KB
testcase_24 AC 663 ms
272,392 KB
testcase_25 AC 648 ms
272,536 KB
testcase_26 AC 649 ms
272,428 KB
testcase_27 AC 651 ms
268,904 KB
testcase_28 AC 671 ms
273,292 KB
testcase_29 AC 682 ms
271,508 KB
testcase_30 AC 639 ms
267,980 KB
testcase_31 AC 652 ms
271,140 KB
testcase_32 AC 644 ms
273,400 KB
testcase_33 AC 644 ms
269,312 KB
testcase_34 AC 40 ms
58,964 KB
testcase_35 AC 34 ms
51,808 KB
testcase_36 AC 34 ms
52,956 KB
testcase_37 AC 33 ms
52,404 KB
testcase_38 AC 160 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
P = list(map(int,input().split()))
A,B,C,D = [0]*n,[0]*n,[0]*m,[0]*m

for i in range(n):
    A[i],B[i] = map(int,input().split())
for i in range(m):
    C[i],D[i] = map(int,input().split())

ans = 0
for s,t in ((1,1),(1,-1),(-1,1),(-1,-1)):
    dic = {}
    for i in range(n):
        for j in range(m):
            u = C[j]-s*A[i]
            v = D[j]-t*B[i]
            dic[v+(u<<32)] = dic.get(v+(u<<32),0)+P[i]
    ans = max(ans,max(dic.values()))
print(ans)
0