結果
問題 | No.640 76本のトロンボーン |
ユーザー | pochiMasahiro |
提出日時 | 2018-02-14 22:33:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,380 bytes |
コンパイル時間 | 79 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-06-02 11:05:56 |
合計ジャッジ時間 | 1,192 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
11,136 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 26 ms
11,264 KB |
testcase_04 | AC | 27 ms
11,264 KB |
testcase_05 | AC | 27 ms
11,264 KB |
testcase_06 | AC | 27 ms
11,136 KB |
testcase_07 | AC | 29 ms
11,008 KB |
testcase_08 | AC | 29 ms
11,008 KB |
testcase_09 | AC | 28 ms
11,264 KB |
testcase_10 | WA | - |
testcase_11 | AC | 27 ms
11,008 KB |
testcase_12 | AC | 28 ms
11,008 KB |
testcase_13 | AC | 28 ms
11,264 KB |
testcase_14 | AC | 29 ms
11,008 KB |
testcase_15 | AC | 28 ms
11,008 KB |
testcase_16 | AC | 28 ms
11,136 KB |
ソースコード
import sys import math import functools import itertools import copy def solve(): N = int(input()) S = [ input() for _ in range(N) ] tmp = copy.deepcopy(S) ans_c1 = 0 for i, s in enumerate(S): if '#' not in s[:N-1]: ans_c1 += 1 tmp[i] = (N-1)*'#'+ tmp[i][N-1] else: st = list(zip(*tmp)) if '#' not in st[0] or '#' not in st[N-1]: ans_c1 += 1 tmp = copy.deepcopy(S) ans_c2 = 0 for i, s in enumerate(S): if '#' not in s[1:N]: ans_c2 += 1 tmp[i] = tmp[i][0] + (N-1)*'#' else: st = list(zip(*tmp)) if '#' not in st[0] or '#' not in st[N-1]: ans_c2 += 1 tmp = list(map(list, zip(*S))) ans_r1 = 0 for i, s in enumerate(list(map(list, zip(*S)))): if '#' not in s[:N-1]: ans_r1 += 1 tmp[i] = (N-1)*'#' + tmp[i][N-1] else: st = list(zip(*tmp)) if '#' not in st[:N-1] or '#' not in st[1:N]: ans_r1 += 1 tmp = list(zip(*S)) ans_r2 = 0 for i, s in enumerate(list(zip(*S))): if '#' not in s[1:N]: ans_r2 += 1 tmp[i] = tmp[i][0] + (N-1)*'#' else: st = list(zip(*tmp)) if '#' not in st[:N-1] or '#' not in st[1:N]: ans_r2 += 1 at = sorted([ans_r1, ans_r2, ans_c1, ans_c2]) if at[-1] >= 4: print(at[-1]) else: if '#' not in S[0] and '#' not in S[N-1] and '#' not in list(zip(*S))[0] and '#' not in list(zip(*S))[N-1]: print(4) else: print(at[-1]) if __name__ == "__main__": solve()