結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-10 04:00:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 556 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 658,788 KB
最終ジャッジ日時 2024-11-10 04:01:03
合計ジャッジ時間 48,243 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 33 ms
52,196 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 54 ms
64,768 KB
testcase_04 AC 107 ms
78,680 KB
testcase_05 AC 111 ms
79,104 KB
testcase_06 AC 58 ms
68,608 KB
testcase_07 AC 39 ms
53,504 KB
testcase_08 AC 56 ms
67,072 KB
testcase_09 AC 69 ms
73,728 KB
testcase_10 AC 82 ms
77,056 KB
testcase_11 AC 110 ms
78,656 KB
testcase_12 AC 134 ms
81,816 KB
testcase_13 AC 49 ms
63,872 KB
testcase_14 AC 730 ms
209,040 KB
testcase_15 AC 1,984 ms
390,740 KB
testcase_16 AC 2,433 ms
472,200 KB
testcase_17 AC 1,679 ms
382,172 KB
testcase_18 AC 1,291 ms
355,932 KB
testcase_19 AC 2,041 ms
431,152 KB
testcase_20 AC 683 ms
240,772 KB
testcase_21 AC 1,863 ms
430,636 KB
testcase_22 AC 960 ms
293,948 KB
testcase_23 AC 1,009 ms
295,800 KB
testcase_24 TLE -
testcase_25 TLE -
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 64 ms
64,256 KB
testcase_35 AC 35 ms
51,948 KB
testcase_36 AC 35 ms
51,840 KB
testcase_37 AC 34 ms
51,712 KB
testcase_38 AC 633 ms
78,484 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=""
        v+=str((bx-cx*fx)+X).zfill(L)
        v+=str((by-cy*fy)+X).zfill(L)
        v+=str(fx+1).zfill(1)
        v+=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