結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 1,799 ms
14,720 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 1,945 ms
14,848 KB
testcase_07 AC 1,399 ms
14,848 KB
testcase_08 AC 2,984 ms
14,976 KB
testcase_09 AC 1,613 ms
14,848 KB
testcase_10 AC 1,971 ms
14,720 KB
testcase_11 AC 1,859 ms
14,976 KB
testcase_12 AC 1,770 ms
14,976 KB
testcase_13 AC 1,852 ms
14,976 KB
testcase_14 AC 1,850 ms
14,976 KB
testcase_15 AC 1,955 ms
14,976 KB
testcase_16 AC 918 ms
12,800 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 1,276 ms
13,440 KB
testcase_20 AC 1,833 ms
14,720 KB
testcase_21 AC 1,562 ms
14,208 KB
testcase_22 AC 1,785 ms
14,976 KB
testcase_23 AC 116 ms
11,008 KB
testcase_24 AC 167 ms
11,136 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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