結果

問題 No.5002 stick xor
ユーザー GrayCoderGrayCoder
提出日時 2018-05-27 21:25:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 968 bytes
コンパイル時間 22,157 ms
実行使用メモリ 5,944 KB
スコア 31,972
最終ジャッジ日時 2018-05-27 21:25:58
ジャッジサーバーID
(参考情報)
judge7 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 675 ms
5,940 KB
testcase_01 AC 678 ms
5,940 KB
testcase_02 AC 681 ms
5,944 KB
testcase_03 AC 681 ms
5,944 KB
testcase_04 RE -
testcase_05 AC 661 ms
5,944 KB
testcase_06 AC 664 ms
5,944 KB
testcase_07 AC 674 ms
5,940 KB
testcase_08 AC 681 ms
5,936 KB
testcase_09 AC 678 ms
5,936 KB
testcase_10 AC 683 ms
5,944 KB
testcase_11 AC 682 ms
5,940 KB
testcase_12 AC 679 ms
5,944 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 666 ms
5,940 KB
testcase_16 AC 674 ms
5,940 KB
testcase_17 AC 678 ms
5,940 KB
testcase_18 AC 681 ms
5,940 KB
testcase_19 AC 674 ms
5,936 KB
testcase_20 AC 672 ms
5,944 KB
testcase_21 AC 680 ms
5,940 KB
testcase_22 RE -
testcase_23 AC 680 ms
5,940 KB
testcase_24 AC 665 ms
5,944 KB
testcase_25 AC 664 ms
5,940 KB
testcase_26 AC 683 ms
5,940 KB
testcase_27 AC 687 ms
5,944 KB
testcase_28 AC 680 ms
5,940 KB
testcase_29 AC 681 ms
5,940 KB
testcase_30 AC 709 ms
5,940 KB
testcase_31 AC 666 ms
5,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    for l in L:
        case1 = challenge(l, A)
        _, row1, col1, row2, col2 = case1
        invert = A[row1-1][col1-1:col2]
        A[row1-1][col1-1:col2] = list(map(lambda x: int(not x), invert))
        print(row1, col1, row2, col2)

def challenge(l, grid):
    maxb = -1
    for i, r in enumerate(grid):
        for j in range(N + 1 - l):
            black = r[j:j+l].count(1)
            if l == black == 1:
                if (not j and not r[j+1]) or (j == N - 1 and not r[j-1]) or r[j-1] == r[j+1] == 0:
                    maxb = black
                    row = i + 1
                    ret = [maxb, row, j + 1, row, j + l]
                    return ret
            if maxb <= black:
                maxb = black
                row = i + 1
                ret = [maxb, row, j + 1, row, j + l]
    return ret

N, K = map(int, input().split())
L = tuple(map(int, input().split()))
A = [list(map(int, list(input()))) for _ in [0] * N]
main()
0