結果

問題 No.2456 Stamp Art
ユーザー hiro1729hiro1729
提出日時 2023-09-02 09:01:03
言語 cLay
(20240714-1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 216 bytes
コンパイル時間 2,829 ms
コンパイル使用メモリ 174,316 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-11 18:12:18
合計ジャッジ時間 4,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 29 ms
8,064 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 28 ms
8,192 KB
testcase_07 AC 29 ms
8,192 KB
testcase_08 AC 29 ms
8,064 KB
testcase_09 AC 31 ms
8,064 KB
testcase_10 AC 29 ms
8,192 KB
testcase_11 AC 30 ms
8,192 KB
testcase_12 AC 29 ms
8,192 KB
testcase_13 AC 29 ms
8,064 KB
testcase_14 AC 30 ms
8,192 KB
testcase_15 AC 28 ms
8,192 KB
testcase_16 AC 17 ms
6,528 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 21 ms
6,912 KB
testcase_20 AC 29 ms
8,192 KB
testcase_21 AC 27 ms
7,680 KB
testcase_22 AC 32 ms
8,192 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@h,@w,c,a=1e5;string@s[h];rep[s](i,h){c=0;rep[i](j,w){if(j=='.'&&c)a=min(a,c),c=0;if(j=='#')c++;}if(c)a=min(a,c);}rep(i,w){c=0;rep(j,h){if(s[j][i]=='.'&&c)a=min(a,c),c=0;if(s[j][i]=='#')c++;}if(c)a=min(a,c);}wt(a);
0