結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
52,352 KB
testcase_01 AC 87 ms
52,608 KB
testcase_02 AC 87 ms
51,968 KB
testcase_03 AC 134 ms
64,896 KB
testcase_04 AC 136 ms
77,568 KB
testcase_05 AC 136 ms
77,952 KB
testcase_06 AC 76 ms
68,736 KB
testcase_07 AC 48 ms
53,632 KB
testcase_08 AC 69 ms
67,200 KB
testcase_09 AC 86 ms
73,984 KB
testcase_10 AC 97 ms
76,544 KB
testcase_11 AC 132 ms
77,592 KB
testcase_12 AC 154 ms
79,468 KB
testcase_13 AC 61 ms
63,744 KB
testcase_14 AC 563 ms
141,752 KB
testcase_15 AC 1,499 ms
267,144 KB
testcase_16 AC 2,045 ms
256,388 KB
testcase_17 AC 1,417 ms
267,268 KB
testcase_18 AC 1,120 ms
257,748 KB
testcase_19 AC 1,805 ms
289,532 KB
testcase_20 AC 622 ms
158,356 KB
testcase_21 AC 1,638 ms
251,388 KB
testcase_22 AC 905 ms
209,280 KB
testcase_23 AC 872 ms
222,504 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 63 ms
64,768 KB
testcase_35 AC 43 ms
52,096 KB
testcase_36 AC 44 ms
52,224 KB
testcase_37 AC 43 ms
51,840 KB
testcase_38 AC 486 ms
77,952 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=7
X=10**(L-1)
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=int(str((bx-cx*fx)+X).zfill(L)+str((by-cy*fy)+X).zfill(L)+str(fx+1).zfill(1)+str(fy+1).zfill(1))
        if v not in d:
          d[v]=0
        d[v]+=p[i]
print(max([d[v] for v in d]+[0]))
0