結果
問題 | No.455 冬の大三角 |
ユーザー | tails |
提出日時 | 2016-12-06 00:12:17 |
言語 | Perl (5.40.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 272 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 6,940 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-06-29 21:03:00 |
合計ジャッジ時間 | 2,390 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 54 |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
($h,$w)=glob<>; for$y(0..$h-1){ push@a,$_=<>; for$x(0..$w-1){ if(substr($_,$x,1)eq'*'){ $y2=$y1;$y1=$y; $x2=$x1;$x1=$x; } } } for$y(0..$h-1){ for$x(0..$w-1){ if(($y-$y1)*($x-$x2)!=($y-$y2)*($x-$x1)){ substr$a[$y],$x,1,'*'; print@a; exit; } } }