結果

問題 No.697 池の数はいくつか
ユーザー ああいいああいい
提出日時 2022-03-07 20:00:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 166,400 KB
最終ジャッジ日時 2024-07-22 15:09:29
合計ジャッジ時間 8,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 WA -
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 34 ms
51,840 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 35 ms
52,096 KB
testcase_16 AC 34 ms
51,968 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 34 ms
51,712 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 641 ms
165,120 KB
testcase_30 WA -
testcase_31 AC 620 ms
164,992 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(H)]

count = 2
stack = []
for h in range(H):
    for w in range(W):
        if A[h][w] == 0:continue
        if A[h][w] == 1:
            A[h][w] = count
            count += 1
        if h + 1 < H and A[h+1][w] == 1:
            A[h+1][w] = A[h][w]
        if w + 1 < W and A[h][w+1] == 1:
            A[h][w+1] = A[h][w]
print(count-2)
0