从左上角起遍历,每次从左侧、下方、左下、右下再取$3$个元素相乘依次比较即可,结果是$70600674=89\times94\times97\times87$ (系从左上角数起第$13$行与第$7$列相交处向左下方再取$3$个数)。
theList=[[..],[..]] #将上述方针以二维数组形式保存在theList中,数据太长此处略去
theMax=0
rowPos=0
colPos=0
g=0 #0,1,2,3 分别表示右、下、左下、右下
for i in range(20):
for j in range(20):
if j<17:
h=theList[i][j]*theList[i][j+1]*theList[i][j+2]*theList[i][j+3]
if h>theMax:
theMax=h
colPos=j
rowPos=i
g=0
if i<17:
v=theList[i][j]*theList[i+1][j]*theList[i+2][j]*theList[i+3][j]
if v>theMax:
theMax=v
colPos=j
rowPos=i
g=1
if i<17 and j>2:
ld=theList[i][j]*theList[i+1][j-1]*theList[i+2][j-2]*theList[i+3][j-3]
if ld>theMax:
theMax=ld
colPos=j
rowPos=i
g=2
if i<17 and j<17:
rd=theList[i][j]*theList[i+1][j+1]*theList[i+2][j+2]*theList[i+3][j+3]
if rd>theMax:
theMax=rd
colPos=j
rowPos=i
g=3
print theMax,rowPos+1,colPos+1,g
|