結果
問題 | No.697 池の数はいくつか |
ユーザー | kuroi_13 |
提出日時 | 2018-06-12 15:24:07 |
言語 | Perl (5.38.2) |
結果 |
MLE
|
実行時間 | - |
コード長 | 827 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 769,312 KB |
最終ジャッジ日時 | 2024-11-25 13:29:18 |
合計ジャッジ時間 | 58,201 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | AC | 6 ms
6,820 KB |
testcase_06 | AC | 6 ms
6,816 KB |
testcase_07 | AC | 7 ms
6,816 KB |
testcase_08 | AC | 6 ms
6,820 KB |
testcase_09 | AC | 6 ms
6,820 KB |
testcase_10 | AC | 7 ms
6,816 KB |
testcase_11 | AC | 7 ms
6,816 KB |
testcase_12 | AC | 6 ms
6,816 KB |
testcase_13 | AC | 6 ms
6,820 KB |
testcase_14 | AC | 6 ms
6,820 KB |
testcase_15 | AC | 7 ms
6,816 KB |
testcase_16 | AC | 6 ms
6,816 KB |
testcase_17 | AC | 7 ms
6,816 KB |
testcase_18 | AC | 7 ms
6,820 KB |
testcase_19 | AC | 6 ms
6,816 KB |
testcase_20 | AC | 6 ms
6,816 KB |
testcase_21 | AC | 6 ms
6,816 KB |
testcase_22 | AC | 6 ms
6,816 KB |
testcase_23 | AC | 6 ms
6,816 KB |
testcase_24 | AC | 2,626 ms
108,416 KB |
testcase_25 | AC | 2,610 ms
108,544 KB |
testcase_26 | AC | 2,683 ms
108,544 KB |
testcase_27 | AC | 2,631 ms
108,544 KB |
testcase_28 | AC | 2,663 ms
108,416 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | MLE | - |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
use strict; use warnings; my($h, $w) = split ' ', <>; my @map; for(<>){ push @map, [split ' ', $_]; } my @queue = (); my @vx = (0, 1, 0, -1); my @vy = (1, 0, -1, 0); my $count = 0; my($pres, $next); for my $y (0..$h-1){ for my $x (0..$w-1){ if($map[$y][$x] == 1){ $map[$y][$x]++; push @queue, {x => $x, y => $y}; while(@queue){ $pres = shift @queue; for my $i (0..3){ $next = {x => $pres->{x} + $vx[$i], y => $pres->{y} + $vy[$i]}; if(-1 < $next->{x} and $next->{x} < $w and -1 < $next->{y} and $next->{y} < $h){ if($map[$next->{y}][$next->{x}] == 1){ $map[$next->{y}][$next->{x}]++; push @queue, {x => $next->{x}, y => $next->{y}}; } } } } $count++; } } } print $count."\n";