結果
問題 | No.640 76本のトロンボーン |
ユーザー | mkawa2 |
提出日時 | 2021-12-05 23:55:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,404 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 61,168 KB |
最終ジャッジ日時 | 2024-07-07 08:49:17 |
合計ジャッジ時間 | 1,630 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 40 ms
51,968 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 37 ms
51,840 KB |
testcase_06 | WA | - |
testcase_07 | AC | 45 ms
60,672 KB |
testcase_08 | AC | 46 ms
60,160 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 43 ms
59,520 KB |
testcase_12 | AC | 43 ms
59,648 KB |
testcase_13 | WA | - |
testcase_14 | AC | 43 ms
59,392 KB |
testcase_15 | AC | 38 ms
52,096 KB |
testcase_16 | AC | 37 ms
52,096 KB |
ソースコード
import sys sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = 18446744073709551615 inf = 4294967295 md = 10**9+7 # md = 998244353 def rot90(aa): return [col[::-1] for col in zip(*aa)] def cnt1(aa): res = 0 for row in aa: s = sum(row) if s == n or s == n-1 and aa[-1][0] == 0 or s == n-1 and aa[-1][-1] == 0: res += 1 return res def cnt2(aa): for i in range(n-1): if aa[i][0] == 0: return 0 res = 1 for i in range(n-1): s = sum(aa[i][1:]) if s == n-1: res += 1 s = sum(aa[-1]) if s == n or s == n-1 and aa[-1][0] == 0: res += 1 return res n = II() aa = [[c == "." for c in SI()] for _ in range(n)] ans = 0 ans = max(ans, cnt1(aa)) aa = rot90(aa) ans = max(ans, cnt1(aa)) for _ in range(2): for _ in range(4): ans = max(ans, cnt2(aa)) aa = rot90(aa) aa = aa[::-1] print(ans)