結果

問題 No.1726 [Cherry 3rd Tune B] ジャマイカビアポン
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-10 04:14:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,265 ms / 3,000 ms
コード長 502 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 448,440 KB
最終ジャッジ日時 2024-11-10 04:14:47
合計ジャッジ時間 35,872 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 50 ms
62,080 KB
testcase_04 AC 76 ms
75,008 KB
testcase_05 AC 80 ms
76,544 KB
testcase_06 AC 61 ms
67,328 KB
testcase_07 AC 43 ms
52,864 KB
testcase_08 AC 57 ms
63,104 KB
testcase_09 AC 68 ms
68,224 KB
testcase_10 AC 74 ms
72,320 KB
testcase_11 AC 82 ms
77,056 KB
testcase_12 AC 95 ms
77,824 KB
testcase_13 AC 57 ms
61,952 KB
testcase_14 AC 430 ms
167,016 KB
testcase_15 AC 1,186 ms
303,100 KB
testcase_16 AC 1,615 ms
354,608 KB
testcase_17 AC 1,146 ms
303,976 KB
testcase_18 AC 928 ms
273,884 KB
testcase_19 AC 1,442 ms
333,420 KB
testcase_20 AC 483 ms
183,320 KB
testcase_21 AC 1,353 ms
313,356 KB
testcase_22 AC 685 ms
230,432 KB
testcase_23 AC 731 ms
244,028 KB
testcase_24 AC 2,265 ms
445,688 KB
testcase_25 AC 2,194 ms
448,440 KB
testcase_26 AC 2,167 ms
446,060 KB
testcase_27 AC 2,175 ms
445,560 KB
testcase_28 AC 2,258 ms
445,204 KB
testcase_29 AC 2,153 ms
429,684 KB
testcase_30 AC 2,139 ms
445,840 KB
testcase_31 AC 2,151 ms
434,912 KB
testcase_32 AC 2,146 ms
445,716 KB
testcase_33 AC 2,169 ms
445,632 KB
testcase_34 AC 46 ms
61,184 KB
testcase_35 AC 35 ms
52,096 KB
testcase_36 AC 34 ms
52,096 KB
testcase_37 AC 36 ms
51,712 KB
testcase_38 AC 542 ms
78,976 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
g=0
for fx in [1,-1]:
  for fy in [1,-1]:
    d={}
    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
        if v not in d:
          d[v]=0
        d[v]+=p[i]
    g=max(g,max(d[v] for v in d))
print(g)
0