結果

問題 No.2456 Stamp Art
ユーザー hiro1729hiro1729
提出日時 2023-09-02 06:48:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 284 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-06-11 18:13:29
合計ジャッジ時間 30,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 1,837 ms
14,976 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 1,842 ms
14,976 KB
testcase_07 AC 1,410 ms
14,976 KB
testcase_08 AC 3,024 ms
14,976 KB
testcase_09 AC 1,613 ms
14,976 KB
testcase_10 AC 1,746 ms
14,976 KB
testcase_11 AC 1,788 ms
14,976 KB
testcase_12 AC 1,712 ms
14,976 KB
testcase_13 AC 1,788 ms
15,104 KB
testcase_14 AC 1,807 ms
14,976 KB
testcase_15 AC 1,913 ms
14,976 KB
testcase_16 AC 914 ms
12,928 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 1,204 ms
13,568 KB
testcase_20 AC 1,781 ms
15,104 KB
testcase_21 AC 1,385 ms
14,464 KB
testcase_22 AC 1,709 ms
14,976 KB
testcase_23 AC 118 ms
11,136 KB
testcase_24 AC 162 ms
11,136 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
s=[input()for _ in[0]*h]
a=1e5
for i in s:
	c=0
	for j in i:
		if j=='.'and c:a=min(a,c);c=0
		if'#'==j:c+=1
	if c:a=min(a,c)
for i in range(w):
	c=0
	for j in range(h):
		k=s[j][i]
		if k=='.'and c:a=min(a,c);c=0
		if'#'==k:c+=1
	if c:a=min(a,c)
print(a)
0