結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-10 04:01:41
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 509 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 657,208 KB
最終ジャッジ日時 2024-11-10 04:02:31
合計ジャッジ時間 44,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,608 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 50 ms
64,640 KB
testcase_04 AC 100 ms
78,344 KB
testcase_05 AC 114 ms
78,432 KB
testcase_06 AC 56 ms
68,608 KB
testcase_07 AC 39 ms
54,144 KB
testcase_08 AC 52 ms
66,944 KB
testcase_09 AC 64 ms
73,344 KB
testcase_10 AC 76 ms
76,708 KB
testcase_11 AC 107 ms
78,504 KB
testcase_12 AC 129 ms
81,748 KB
testcase_13 AC 46 ms
63,360 KB
testcase_14 AC 551 ms
208,952 KB
testcase_15 AC 1,523 ms
390,540 KB
testcase_16 AC 2,086 ms
471,488 KB
testcase_17 AC 1,440 ms
381,952 KB
testcase_18 AC 1,180 ms
355,724 KB
testcase_19 AC 1,879 ms
430,736 KB
testcase_20 AC 627 ms
240,872 KB
testcase_21 AC 1,750 ms
430,208 KB
testcase_22 AC 905 ms
293,208 KB
testcase_23 AC 917 ms
295,228 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 AC 48 ms
64,256 KB
testcase_35 AC 35 ms
51,712 KB
testcase_36 AC 36 ms
52,352 KB
testcase_37 AC 33 ms
51,968 KB
testcase_38 AC 630 ms
78,356 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=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