結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,500 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 51 ms
66,028 KB
testcase_04 AC 115 ms
79,312 KB
testcase_05 AC 123 ms
79,020 KB
testcase_06 AC 60 ms
71,040 KB
testcase_07 AC 37 ms
53,760 KB
testcase_08 AC 55 ms
68,992 KB
testcase_09 AC 74 ms
76,416 KB
testcase_10 AC 80 ms
77,056 KB
testcase_11 AC 120 ms
79,328 KB
testcase_12 AC 151 ms
82,120 KB
testcase_13 AC 56 ms
64,640 KB
testcase_14 AC 873 ms
240,188 KB
testcase_15 AC 2,469 ms
384,084 KB
testcase_16 TLE -
testcase_17 AC 2,390 ms
375,028 KB
testcase_18 AC 1,911 ms
302,572 KB
testcase_19 TLE -
testcase_20 AC 987 ms
249,620 KB
testcase_21 AC 2,878 ms
453,052 KB
testcase_22 AC 1,414 ms
288,836 KB
testcase_23 AC 1,499 ms
289,888 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 50 ms
65,604 KB
testcase_35 AC 32 ms
53,532 KB
testcase_36 AC 33 ms
54,120 KB
testcase_37 AC 33 ms
52,708 KB
testcase_38 AC 1,594 ms
78,912 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
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