結果
問題 | No.455 冬の大三角 |
ユーザー | jj |
提出日時 | 2016-12-06 22:41:37 |
言語 | Fortran (gFortran 14.2.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 532 bytes |
コンパイル時間 | 641 ms |
コンパイル使用メモリ | 31,872 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 21:16:13 |
合計ジャッジ時間 | 2,572 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 54 |
ソースコード
program main implicit none integer::H,W,i,j integer::star(2,3) integer::b,e,is,js character*100::S(100) read *,H,W read *,S(1:H)(1:W) do i=1,H b = INDEX(S(i)(1:W),'*') e = INDEX(S(i)(1:W),'*',.true.) if(b.ne.0.and.e.ne.0) then if(b.eq.e) then js = MOD((b+W),W)+1 is = i else js = b is = MOD((i+H),H)+1 end if S(is)(js:js)='*' exit end if end do do i=1,H print '(a)',S(i)(1:W) end do end program main