結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 1,841 ms
14,976 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 2,021 ms
14,848 KB
testcase_07 AC 1,522 ms
14,848 KB
testcase_08 AC 3,131 ms
14,848 KB
testcase_09 AC 1,789 ms
14,848 KB
testcase_10 AC 1,867 ms
14,848 KB
testcase_11 AC 1,925 ms
14,848 KB
testcase_12 AC 1,770 ms
14,848 KB
testcase_13 AC 1,829 ms
14,976 KB
testcase_14 AC 1,789 ms
14,848 KB
testcase_15 AC 1,905 ms
14,976 KB
testcase_16 AC 926 ms
12,928 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 1,217 ms
13,440 KB
testcase_20 AC 1,846 ms
14,976 KB
testcase_21 AC 1,482 ms
14,336 KB
testcase_22 AC 1,743 ms
14,848 KB
testcase_23 AC 119 ms
11,008 KB
testcase_24 AC 166 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):
		if'.'==s[j][i]and c:a=min(a,c);c=0
		if'#'==s[j][i]:c+=1
	if c:a=min(a,c)
print(a)
0