結果

問題 No.697 池の数はいくつか
ユーザー GrayCoderGrayCoder
提出日時 2018-06-18 22:18:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 45,876 KB
最終ジャッジ日時 2024-05-04 05:57:00
合計ジャッジ時間 6,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

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

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

main()
0