結果
問題 | No.697 池の数はいくつか |
ユーザー | kokatsu |
提出日時 | 2021-10-26 19:03:23 |
言語 | D (dmd 2.106.1) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,148 bytes |
コンパイル時間 | 1,905 ms |
コンパイル使用メモリ | 208,316 KB |
実行使用メモリ | 507,404 KB |
最終ジャッジ日時 | 2024-06-22 12:59:45 |
合計ジャッジ時間 | 19,118 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 2,163 ms
74,548 KB |
testcase_25 | AC | 4,835 ms
204,376 KB |
testcase_26 | MLE | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
import std; struct Grid { int x; int y; } void main() { int H, W; readf("%d %d\n", H, W); auto A = new int[][](H, W); foreach (i; 0 .. H) { A[i] = readln.chomp.split.to!(int[]); } auto move = [ Grid(-1, 0), Grid(0, 1), Grid(1, 0), Grid(0, -1) ]; int res; foreach (i; 0 .. H) { foreach (j; 0 .. W) { if (A[i][j] == 0) { continue; } ++res; Grid[] que; que ~= Grid(i, j); while (!que.empty) { auto f = que.front; que.popFront; A[f.x][f.y] = 0; foreach (m; move) { auto next = f; next.x += m.x, next.y += m.y; if (next.x < 0 || next.x >= H || next.y < 0 || next.y >= W) { continue; } if (A[next.x][next.y] == 0) { continue; } que ~= next; } } } } res.writeln; }