結果

問題 No.455 冬の大三角
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-11-01 06:37:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 66,156 KB
最終ジャッジ日時 2024-07-16 02:50:00
合計ジャッジ時間 4,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,652 KB
testcase_01 AC 40 ms
53,024 KB
testcase_02 AC 36 ms
52,996 KB
testcase_03 AC 38 ms
52,776 KB
testcase_04 AC 35 ms
53,224 KB
testcase_05 AC 34 ms
52,764 KB
testcase_06 AC 35 ms
52,620 KB
testcase_07 AC 35 ms
52,260 KB
testcase_08 AC 49 ms
66,156 KB
testcase_09 AC 36 ms
53,640 KB
testcase_10 AC 37 ms
53,124 KB
testcase_11 AC 36 ms
53,020 KB
testcase_12 AC 35 ms
52,592 KB
testcase_13 AC 36 ms
53,896 KB
testcase_14 AC 35 ms
52,988 KB
testcase_15 AC 36 ms
52,132 KB
testcase_16 AC 36 ms
52,380 KB
testcase_17 AC 36 ms
53,744 KB
testcase_18 AC 36 ms
52,988 KB
testcase_19 AC 35 ms
52,896 KB
testcase_20 AC 35 ms
53,504 KB
testcase_21 AC 35 ms
53,008 KB
testcase_22 AC 37 ms
54,292 KB
testcase_23 AC 35 ms
52,832 KB
testcase_24 AC 35 ms
53,700 KB
testcase_25 AC 36 ms
52,884 KB
testcase_26 AC 37 ms
52,348 KB
testcase_27 AC 36 ms
52,952 KB
testcase_28 AC 36 ms
52,584 KB
testcase_29 AC 49 ms
64,736 KB
testcase_30 AC 48 ms
63,524 KB
testcase_31 AC 46 ms
63,664 KB
testcase_32 AC 48 ms
63,400 KB
testcase_33 AC 47 ms
64,636 KB
testcase_34 AC 37 ms
54,044 KB
testcase_35 AC 47 ms
65,068 KB
testcase_36 AC 46 ms
63,540 KB
testcase_37 AC 47 ms
62,020 KB
testcase_38 AC 44 ms
61,140 KB
testcase_39 AC 47 ms
64,456 KB
testcase_40 AC 46 ms
64,460 KB
testcase_41 AC 47 ms
65,012 KB
testcase_42 AC 46 ms
61,632 KB
testcase_43 AC 46 ms
60,872 KB
testcase_44 AC 44 ms
61,424 KB
testcase_45 AC 51 ms
64,180 KB
testcase_46 AC 48 ms
63,284 KB
testcase_47 AC 47 ms
63,232 KB
testcase_48 AC 45 ms
62,964 KB
testcase_49 AC 36 ms
52,680 KB
testcase_50 AC 34 ms
53,288 KB
testcase_51 AC 35 ms
53,884 KB
testcase_52 AC 38 ms
54,468 KB
testcase_53 AC 40 ms
59,244 KB
testcase_54 AC 36 ms
53,620 KB
testcase_55 AC 45 ms
62,900 KB
testcase_56 AC 37 ms
53,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
S = [list(input()) for _ in range(H)]
xi,yi = H+1,W+1
for i in range(H):
    for j in range(W):
        if S[i][j]=='*':
            xi,yi=i,j
            break
    if xi!=H+1:
        break

xj,yj = -1,-1
for i in range(H-1,-1,-1):
    for j in range(W-1,-1,-1):
        if S[i][j]=='*':
            xj,yj=i,j
            break
    if xj!=-1:
        break
for i in range(H):
    for j in range(W):
        dxi,dyi = xi-i,yi-j
        dxj,dyj = xj-i,yj-j
        if (dxi*dxj+dyi*dyj)**2!=(dxi**2+dyi**2)*(dxj**2+dyj**2):
            S[i][j]='*'

            for _ in range(H):
                print(*S[_],sep='')
            exit()
0