結果

問題 No.2456 Stamp Art
ユーザー hiro1729hiro1729
提出日時 2023-09-02 06:46:00
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 383 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-06-11 18:11:12
合計ジャッジ時間 5,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,752 KB
testcase_01 AC 32 ms
53,120 KB
testcase_02 AC 32 ms
53,108 KB
testcase_03 AC 125 ms
78,100 KB
testcase_04 AC 32 ms
52,792 KB
testcase_05 AC 40 ms
62,340 KB
testcase_06 AC 201 ms
80,352 KB
testcase_07 AC 244 ms
80,652 KB
testcase_08 AC 217 ms
80,328 KB
testcase_09 AC 216 ms
80,248 KB
testcase_10 AC 512 ms
80,496 KB
testcase_11 AC 181 ms
80,768 KB
testcase_12 AC 194 ms
80,220 KB
testcase_13 AC 194 ms
80,332 KB
testcase_14 AC 208 ms
80,336 KB
testcase_15 AC 190 ms
80,348 KB
testcase_16 AC 125 ms
78,540 KB
testcase_17 AC 39 ms
62,136 KB
testcase_18 AC 37 ms
60,280 KB
testcase_19 AC 145 ms
78,968 KB
testcase_20 AC 196 ms
80,160 KB
testcase_21 AC 179 ms
80,172 KB
testcase_22 AC 359 ms
80,340 KB
testcase_23 AC 65 ms
76,408 KB
testcase_24 AC 124 ms
76,440 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