結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-10 04:07:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 545 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 568,128 KB
最終ジャッジ日時 2024-11-10 04:08:09
合計ジャッジ時間 25,413 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,088 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 64 ms
62,720 KB
testcase_04 AC 86 ms
74,752 KB
testcase_05 AC 89 ms
75,520 KB
testcase_06 AC 68 ms
66,304 KB
testcase_07 AC 45 ms
53,120 KB
testcase_08 AC 67 ms
65,664 KB
testcase_09 AC 70 ms
67,200 KB
testcase_10 AC 80 ms
70,656 KB
testcase_11 AC 85 ms
74,752 KB
testcase_12 AC 110 ms
81,664 KB
testcase_13 AC 57 ms
62,464 KB
testcase_14 AC 781 ms
214,352 KB
testcase_15 AC 2,190 ms
389,072 KB
testcase_16 TLE -
testcase_17 AC 2,158 ms
388,276 KB
testcase_18 AC 1,711 ms
359,596 KB
testcase_19 AC 2,667 ms
430,324 KB
testcase_20 AC 873 ms
248,588 KB
testcase_21 AC 2,456 ms
452,640 KB
testcase_22 AC 1,296 ms
286,992 KB
testcase_23 AC 1,343 ms
287,636 KB
testcase_24 MLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 MLE -
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)]
L=10
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=0
        v+=(bx-cx*fx)+10**L
        v*=10**(L+1)
        v+=(by-cy*fy)+10**L
        v*=10
        v+=fx+1
        v*=10
        v+=fy+1
        if v not in d:
          d[v]=0
        d[v]+=p[i]
print(max([d[v] for v in d]+[0]))
0