結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 45 ms
62,592 KB
testcase_04 WA -
testcase_05 AC 65 ms
73,600 KB
testcase_06 WA -
testcase_07 AC 36 ms
53,120 KB
testcase_08 AC 49 ms
65,152 KB
testcase_09 AC 51 ms
66,432 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 43 ms
62,080 KB
testcase_14 AC 444 ms
199,280 KB
testcase_15 AC 1,387 ms
367,672 KB
testcase_16 AC 1,960 ms
471,796 KB
testcase_17 AC 1,297 ms
355,196 KB
testcase_18 AC 1,005 ms
330,928 KB
testcase_19 AC 1,756 ms
497,108 KB
testcase_20 AC 550 ms
216,128 KB
testcase_21 AC 1,573 ms
423,456 KB
testcase_22 AC 809 ms
312,980 KB
testcase_23 AC 792 ms
316,356 KB
testcase_24 AC 2,400 ms
493,332 KB
testcase_25 AC 2,330 ms
485,484 KB
testcase_26 AC 2,366 ms
492,640 KB
testcase_27 AC 2,343 ms
488,516 KB
testcase_28 AC 2,384 ms
483,892 KB
testcase_29 AC 2,363 ms
496,588 KB
testcase_30 AC 2,294 ms
485,000 KB
testcase_31 AC 2,307 ms
482,908 KB
testcase_32 AC 2,340 ms
492,912 KB
testcase_33 AC 2,436 ms
496,660 KB
testcase_34 AC 43 ms
61,056 KB
testcase_35 AC 32 ms
51,968 KB
testcase_36 AC 32 ms
51,968 KB
testcase_37 AC 32 ms
51,712 KB
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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=9
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=0
        v+=(fx+1)*2+(fy+1)
        v*=10
        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]
print(max([d[v] for v in d]+[0]))
0