結果

問題 No.697 池の数はいくつか
ユーザー GrayCoderGrayCoder
提出日時 2018-06-19 04:37:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,068 KB
最終ジャッジ日時 2024-05-04 05:57:07
合計ジャッジ時間 6,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 24 ms
10,624 KB
testcase_20 AC 24 ms
10,752 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 25 ms
10,624 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 304 ms
45,796 KB
testcase_30 WA -
testcase_31 AC 301 ms
45,876 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stdout
input = lambda: stdin.readline().rstrip()
write = stdout.write

def main():
    H, W = map(int, input().split())
    A = stdin.read().replace(' ', '').splitlines()

    ans = 0
    for s in A:
        ans += ponds(s)
    if not ans:
        print(0)
        return

    for i in range(H - 1):
        n = int(A[i], 2) & int(A[i+1], 2)
        ans = max(1, ans - ponds(format(n, 'b')))
    print(ans)

def ponds(s):
    s = s.replace('0', ' ')
    cnt = len(s.split())
    return cnt

main()
0