結果
問題 | No.86 TVザッピング(2) |
ユーザー | cologne |
提出日時 | 2022-01-27 15:04:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,367 bytes |
コンパイル時間 | 457 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 71,600 KB |
最終ジャッジ日時 | 2024-06-07 11:00:18 |
合計ジャッジ時間 | 3,013 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,012 KB |
testcase_01 | AC | 40 ms
53,440 KB |
testcase_02 | AC | 40 ms
53,160 KB |
testcase_03 | WA | - |
testcase_04 | AC | 40 ms
52,612 KB |
testcase_05 | AC | 40 ms
53,148 KB |
testcase_06 | WA | - |
testcase_07 | AC | 40 ms
53,628 KB |
testcase_08 | WA | - |
testcase_09 | AC | 53 ms
65,000 KB |
testcase_10 | AC | 51 ms
63,920 KB |
testcase_11 | AC | 41 ms
52,716 KB |
testcase_12 | AC | 40 ms
53,872 KB |
testcase_13 | AC | 39 ms
53,676 KB |
testcase_14 | WA | - |
testcase_15 | AC | 55 ms
64,604 KB |
testcase_16 | AC | 51 ms
63,684 KB |
testcase_17 | WA | - |
testcase_18 | AC | 43 ms
58,804 KB |
testcase_19 | AC | 42 ms
58,484 KB |
testcase_20 | AC | 39 ms
52,820 KB |
testcase_21 | AC | 52 ms
64,904 KB |
testcase_22 | AC | 40 ms
53,044 KB |
testcase_23 | AC | 50 ms
61,960 KB |
testcase_24 | AC | 39 ms
53,624 KB |
testcase_25 | AC | 38 ms
53,436 KB |
testcase_26 | AC | 41 ms
54,228 KB |
testcase_27 | WA | - |
testcase_28 | AC | 39 ms
53,128 KB |
testcase_29 | AC | 54 ms
65,004 KB |
testcase_30 | AC | 39 ms
52,956 KB |
testcase_31 | AC | 40 ms
54,092 KB |
testcase_32 | AC | 39 ms
52,824 KB |
ソースコード
import sys import math def input(): return sys.stdin.readline().rstrip() def check(A): N = len(A) M = len(A[0]) 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: return False if cnt != 2*(maxi-mini) + 2*(maxj-minj): return False 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(): return False 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: return False redi = i if cnt < 2: return False 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: return False redj = j if cnt < 2: return False if redi is None or redj is None: return False for i in range(N): for j in range(M): if A[i][j] == '.': if i == maxi: continue if j == mini: continue if i == mini and minj <= j <= redj: continue if i == redi and redj <= j <= maxj: continue if j == redj and mini <= i <= redi: continue if j == maxj and redi <= i <= maxi: continue return False return True def main(): N, M = map(int, input().split()) A = [input() for i in range(N)] for i in range(4): if check(A): print('YES') return *A, = zip(*A[::-1]) print('NO') if __name__ == '__main__': main()