結果
問題 | No.86 TVザッピング(2) |
ユーザー | cologne |
提出日時 | 2022-01-27 14:44:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,426 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 82,152 KB |
実行使用メモリ | 61,860 KB |
最終ジャッジ日時 | 2024-12-25 12:54:52 |
合計ジャッジ時間 | 2,423 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,672 KB |
testcase_01 | WA | - |
testcase_02 | AC | 36 ms
53,080 KB |
testcase_03 | AC | 37 ms
53,024 KB |
testcase_04 | AC | 34 ms
52,872 KB |
testcase_05 | AC | 34 ms
53,336 KB |
testcase_06 | AC | 35 ms
53,516 KB |
testcase_07 | AC | 35 ms
53,220 KB |
testcase_08 | AC | 38 ms
58,800 KB |
testcase_09 | AC | 41 ms
61,572 KB |
testcase_10 | AC | 39 ms
59,748 KB |
testcase_11 | AC | 34 ms
52,780 KB |
testcase_12 | AC | 36 ms
52,928 KB |
testcase_13 | AC | 35 ms
53,324 KB |
testcase_14 | AC | 42 ms
60,800 KB |
testcase_15 | AC | 43 ms
59,924 KB |
testcase_16 | AC | 39 ms
59,304 KB |
testcase_17 | AC | 35 ms
53,132 KB |
testcase_18 | AC | 35 ms
53,072 KB |
testcase_19 | AC | 35 ms
53,784 KB |
testcase_20 | AC | 34 ms
53,348 KB |
testcase_21 | AC | 42 ms
60,536 KB |
testcase_22 | AC | 35 ms
53,420 KB |
testcase_23 | AC | 41 ms
60,440 KB |
testcase_24 | AC | 35 ms
52,876 KB |
testcase_25 | AC | 36 ms
52,996 KB |
testcase_26 | AC | 35 ms
52,584 KB |
testcase_27 | AC | 37 ms
53,880 KB |
testcase_28 | AC | 35 ms
53,000 KB |
testcase_29 | AC | 42 ms
61,860 KB |
testcase_30 | AC | 38 ms
53,220 KB |
testcase_31 | AC | 39 ms
52,748 KB |
testcase_32 | AC | 36 ms
53,972 KB |
ソースコード
import sys import math def input(): return sys.stdin.readline().rstrip() def main(): N, M = map(int, input().split()) A = [input() for i in range(N)] mini = minj = math.inf maxi = maxj = -math.inf cnt = 0 for i in range(N): for j in range(M): if A[i][j] == '.': cnt += 1 mini, minj, maxi, maxj = \ min(mini, i), min(minj, j), max(maxi, i), max(maxj, j) if maxi == mini or maxj == minj: print('NO') return if cnt != 2*(maxi-mini) + 2*(maxj-minj): print('NO') return def checkrect(): for i in range(mini, maxi+1): if A[i][minj] == '#' or A[i][maxj] == '#': return False for j in range(minj, maxj+1): if A[mini][j] == '#' or A[maxi][j] == '#': return False return True if checkrect(): print('YES') return redi = redj = None for i in range(mini+1, maxi): cnt = 0 for j in range(minj, maxj+1): if A[i][j] == '.': cnt += 1 if cnt > 2: if redi is not None: print('NO') return redi = i if cnt < 2: print('NO') return for j in range(minj+1, maxj): cnt = 0 for i in range(mini, maxi+1): if A[i][j] == '.': cnt += 1 if cnt > 2: if redj is not None: print('NO') return redj = j if cnt < 2: print('NO') return if redi is None or redj is None: print('NO') return def checku(): for i in range(mini, redi+1): if A[i][redj] == '#': return False return True def checkd(): for i in range(redi, maxi+1): if A[i][redj] == '#': return False return True def checkl(): for j in range(minj, redj+1): if A[redi][j] == '#': return False return True def checkr(): for j in range(redj, maxj+1): if A[redi][j] == '#': return False return True if (checku() or checkd()) and (checkl() or checkr()): print('YES') else: print('NO') if __name__ == '__main__': main()