結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー 👑 KazunKazun
提出日時 2021-08-20 18:02:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 584 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-10-07 08:52:05
合計ジャッジ時間 5,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,088 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 58 ms
65,536 KB
testcase_04 AC 102 ms
75,904 KB
testcase_05 AC 125 ms
76,160 KB
testcase_06 AC 57 ms
65,152 KB
testcase_07 AC 49 ms
61,824 KB
testcase_08 AC 55 ms
64,000 KB
testcase_09 AC 60 ms
66,560 KB
testcase_10 AC 64 ms
67,328 KB
testcase_11 AC 75 ms
73,728 KB
testcase_12 AC 173 ms
76,048 KB
testcase_13 AC 54 ms
63,872 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()))

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))
T_set=set(T)

X=0
for i in range(N):
    a,b=S[i]
    for j in range(M):
        c,d=T[j]
        for s,t in [(1,1),(1,-1),(-1,1),(-1,-1)]:
            u=c-s*a; v=d-t*b

            Y=0
            for k in range(N):
                x,y=S[k]
                if (s*x+u, t*y+v) in T_set:
                    Y+=P[k]

            if X<Y:
                X=Y

print(X)
0