結果
問題 | No.455 冬の大三角 |
ユーザー |
![]() |
提出日時 | 2017-09-24 10:08:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 668 bytes |
コンパイル時間 | 645 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-11-14 07:06:02 |
合計ジャッジ時間 | 3,950 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 41 RE * 13 |
ソースコード
H,W = map(int,input().split())S = [list(input()) for i in range(H)]p = []for i in range(H):for j in range(W):if S[i][j] == '*':p.append((i,j))ok = [[True for j in range(W)] for i in range(H)]ok[p[0][0]][p[0][1]] = Falseok[p[1][0]][p[1][1]] = Falsedy,dx = [0,1,0,-1],[1,0,-1,0]flag = Falseansi,ansj = -1,-1for pp in p:for i in range(4):ny,nx = pp[0] + dy[i],pp[1] + dx[i]if not ok[ny][nx]:continueif ny < H and nx < W and ny >= 0 and nx >= 0:if not (p[0][0] == p[1][0] == ny or p[0][1] == p[1][1] == nx):ansi,ansj = ny,nxflag = Truebreakif flag:breakS[ansi][ansj] = '*'for i in range(H):print(''.join(S[i]))