結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,496 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 30 ms
10,496 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 29 ms
10,496 KB
testcase_23 AC 29 ms
10,496 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 342 ms
45,544 KB
testcase_30 WA -
testcase_31 AC 337 ms
45,648 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