結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー 👑 KazunKazun
提出日時 2021-10-17 03:22:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 751 ms / 3,000 ms
コード長 516 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 273,428 KB
最終ジャッジ日時 2024-10-07 09:17:45
合計ジャッジ時間 13,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 51 ms
61,952 KB
testcase_04 AC 62 ms
66,816 KB
testcase_05 AC 61 ms
67,200 KB
testcase_06 AC 54 ms
63,232 KB
testcase_07 AC 42 ms
54,272 KB
testcase_08 AC 51 ms
62,336 KB
testcase_09 AC 55 ms
64,000 KB
testcase_10 AC 57 ms
65,792 KB
testcase_11 AC 59 ms
66,816 KB
testcase_12 AC 65 ms
70,656 KB
testcase_13 AC 48 ms
62,080 KB
testcase_14 AC 200 ms
130,376 KB
testcase_15 AC 469 ms
238,136 KB
testcase_16 AC 595 ms
264,348 KB
testcase_17 AC 476 ms
244,720 KB
testcase_18 AC 369 ms
219,548 KB
testcase_19 AC 538 ms
260,144 KB
testcase_20 AC 222 ms
141,668 KB
testcase_21 AC 521 ms
260,912 KB
testcase_22 AC 303 ms
190,388 KB
testcase_23 AC 321 ms
199,572 KB
testcase_24 AC 730 ms
273,184 KB
testcase_25 AC 728 ms
273,428 KB
testcase_26 AC 715 ms
273,192 KB
testcase_27 AC 747 ms
271,908 KB
testcase_28 AC 718 ms
272,360 KB
testcase_29 AC 751 ms
272,416 KB
testcase_30 AC 716 ms
271,492 KB
testcase_31 AC 732 ms
272,572 KB
testcase_32 AC 723 ms
272,712 KB
testcase_33 AC 740 ms
270,548 KB
testcase_34 AC 48 ms
60,928 KB
testcase_35 AC 41 ms
53,760 KB
testcase_36 AC 40 ms
54,144 KB
testcase_37 AC 40 ms
53,504 KB
testcase_38 AC 178 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

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

S=[]
for _ in range(N):
    a,b=map(int,input().split())
    S.append((a,b))

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

X=0
for s,t in [(1,1),(1,-1),(-1,1),(-1,-1)]:
    D=defaultdict(int)

    for i in range(N):
        a,b=S[i]
        for j in range(M):
            c,d=T[j]

            p=c-s*a; q=d-t*b
            D[(p<<32)^q]+=P[i]

    X=max(X,max(D.values()))

print(X)
0