結果
問題 | No.640 76本のトロンボーン |
ユーザー | titia |
提出日時 | 2024-06-27 02:21:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,156 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 70,548 KB |
最終ジャッジ日時 | 2024-06-27 02:21:35 |
合計ジャッジ時間 | 2,052 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 37 ms
52,552 KB |
testcase_06 | AC | 52 ms
62,792 KB |
testcase_07 | AC | 71 ms
67,540 KB |
testcase_08 | AC | 76 ms
70,548 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 40 ms
52,976 KB |
testcase_14 | WA | - |
testcase_15 | AC | 46 ms
54,060 KB |
testcase_16 | AC | 38 ms
52,296 KB |
ソースコード
import sys input = sys.stdin.readline N=int(input()) MAP=[list(input().strip()) for i in range(N)] flag=1 for i in range(N): if MAP[0][i]=="#": flag=0 if MAP[0][N-1]=="#": flag=0 if MAP[i][0]=="#": flag=0 if MAP[N-1][0]=="#": flag=0 if flag==1: ANS=4 else: ANS=0 for i in range(N): if not ("#" in MAP[i][0:N-1]): for j in range(N-1): MAP[i][j]="#" score=1 for j in range(N): x=0 for i in range(N): if MAP[i][j]==".": x+=1 if x>=N-1: score+=1 break ANS=max(ANS,score) for j in range(N-1): MAP[i][j]="." if not ("#" in MAP[i][1:N]): for j in range(1,N): MAP[i][j]="#" score=1 for j in range(N): x=0 for i in range(N): if MAP[i][j]==".": x+=1 if x>=N-1: score+=1 break ANS=max(ANS,score) for j in range(1,N): MAP[i][j]="." MAP2=[["."]*N for i in range(N)] for i in range(N): for j in range(N): if MAP[i][j]=="#": MAP2[N-1-j][i]="#" MAP=MAP2 for i in range(N): if not ("#" in MAP[i][0:N-1]): for j in range(N-1): MAP[i][j]="#" score=1 for j in range(N): x=0 for i in range(N): if MAP[i][j]==".": x+=1 if x>=N-1: score+=1 break ANS=max(ANS,score) for j in range(N-1): MAP[i][j]="." if not ("#" in MAP[i][1:N]): for j in range(1,N): MAP[i][j]="#" score=1 for j in range(N): x=0 for i in range(N): if MAP[i][j]==".": x+=1 if x>=N-1: score+=1 break ANS=max(ANS,score) for j in range(1,N): MAP[i][j]="." print(ANS)