結果
問題 | No.2456 Stamp Art |
ユーザー | ゼット |
提出日時 | 2023-09-01 23:59:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,561 bytes |
コンパイル時間 | 724 ms |
コンパイル使用メモリ | 82,100 KB |
実行使用メモリ | 113,468 KB |
最終ジャッジ日時 | 2024-06-11 06:19:08 |
合計ジャッジ時間 | 10,991 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,688 KB |
testcase_01 | AC | 39 ms
54,068 KB |
testcase_02 | AC | 34 ms
53,384 KB |
testcase_03 | AC | 584 ms
112,304 KB |
testcase_04 | AC | 36 ms
52,340 KB |
testcase_05 | AC | 41 ms
59,432 KB |
testcase_06 | AC | 574 ms
112,372 KB |
testcase_07 | AC | 404 ms
113,292 KB |
testcase_08 | AC | 99 ms
108,712 KB |
testcase_09 | AC | 619 ms
113,468 KB |
testcase_10 | AC | 630 ms
112,400 KB |
testcase_11 | AC | 617 ms
112,372 KB |
testcase_12 | AC | 128 ms
109,336 KB |
testcase_13 | WA | - |
testcase_14 | AC | 614 ms
112,528 KB |
testcase_15 | AC | 585 ms
112,256 KB |
testcase_16 | AC | 379 ms
95,488 KB |
testcase_17 | AC | 81 ms
74,112 KB |
testcase_18 | AC | 51 ms
62,720 KB |
testcase_19 | AC | 436 ms
100,608 KB |
testcase_20 | WA | - |
testcase_21 | AC | 553 ms
109,568 KB |
testcase_22 | AC | 557 ms
112,804 KB |
testcase_23 | AC | 123 ms
78,776 KB |
testcase_24 | AC | 152 ms
79,872 KB |
testcase_25 | AC | 41 ms
52,464 KB |
ソースコード
H,W=map(int,input().split()) S=[input() for i in range(H)] v=[[0]*W for i in range(H)] for i in range(H): for j in range(W): if S[i][j]=='#': v[i][j]+=1 if i>0 and i<H-1: if S[i-1][j]=='.' and S[i+1][j]=='.' and S[i][j]=='#': print(1) exit() if j>0 and j<W-1: if S[i][j-1]=='.' and S[i][j+1]=='.' and S[i][j]=='#': print(1) exit() for i in range(H): for j in range(1,W): v[i][j]=v[i][j-1]+v[i][j] for i in range(1,H): for j in range(W): v[i][j]=v[i-1][j]+v[i][j] result=10**10 DX=[1,1,-1,-1] DY=[1,-1,1,-1] for i in range(H): for j in range(W): if S[i][j]=='.': continue for dx,dy in zip(DX,DY): x=i-dx y=j-dy t=0 if x<0 or x>=H: t+=1 else: if S[x][j]=='.': t+=1 if y<0 or y>=W: t+=1 else: if S[i][y]=='.': t+=1 if t==2: l=1 r=2000 while True: m=(l+r+1)//2 i2,j2=i+dx*(m-1),j+dy*(m-1) if i2<0 or i2>=H or j2<0 or j2>=W: r=m-1 else: j3=max(j,j2) j4=min(j,j2) i3=max(i,i2) i4=min(i,i2) ans=v[i3][j3] if j4>0: ans-=v[i3][j4-1] if i4>0: ans-=v[i4-1][j3] if i4>0 and j4>0: ans+=v[i4-1][j4-1] if ans==m**2: l=m else: r=m-1 if l==r: break result=min(result,l) print(result)