結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-10 04:06:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 568,004 KB
最終ジャッジ日時 2024-11-10 04:07:39
合計ジャッジ時間 26,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,300 KB
testcase_01 WA -
testcase_02 AC 35 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 61 ms
74,752 KB
testcase_05 WA -
testcase_06 AC 51 ms
66,572 KB
testcase_07 AC 37 ms
53,120 KB
testcase_08 WA -
testcase_09 AC 53 ms
67,328 KB
testcase_10 WA -
testcase_11 AC 64 ms
75,392 KB
testcase_12 WA -
testcase_13 AC 44 ms
62,464 KB
testcase_14 AC 565 ms
214,280 KB
testcase_15 AC 1,780 ms
389,328 KB
testcase_16 AC 2,480 ms
497,676 KB
testcase_17 AC 1,723 ms
387,544 KB
testcase_18 AC 1,374 ms
359,340 KB
testcase_19 AC 2,138 ms
430,456 KB
testcase_20 AC 661 ms
247,756 KB
testcase_21 AC 1,946 ms
452,344 KB
testcase_22 AC 1,009 ms
286,992 KB
testcase_23 AC 1,064 ms
286,532 KB
testcase_24 MLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 WA -
testcase_35 AC 35 ms
52,404 KB
testcase_36 AC 34 ms
52,480 KB
testcase_37 AC 33 ms
52,820 KB
testcase_38 AC 803 ms
78,352 KB
権限があれば一括ダウンロードができます

ソースコード

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*=2
        v+=fx+1
        v*=2
        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