結果

問題 No.5002 stick xor
ユーザー GrayCoderGrayCoder
提出日時 2018-05-29 01:34:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,096 bytes
コンパイル時間 23,832 ms
実行使用メモリ 5,972 KB
スコア 24,502
最終ジャッジ日時 2018-05-29 01:35:16
ジャッジサーバーID
(参考情報)
judge9 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 662 ms
5,972 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 649 ms
5,972 KB
testcase_05 WA -
testcase_06 AC 651 ms
5,968 KB
testcase_07 AC 713 ms
5,968 KB
testcase_08 AC 677 ms
5,964 KB
testcase_09 WA -
testcase_10 AC 663 ms
5,968 KB
testcase_11 WA -
testcase_12 AC 656 ms
5,964 KB
testcase_13 AC 694 ms
5,972 KB
testcase_14 AC 648 ms
5,968 KB
testcase_15 AC 661 ms
5,968 KB
testcase_16 AC 660 ms
5,968 KB
testcase_17 WA -
testcase_18 AC 695 ms
5,968 KB
testcase_19 AC 649 ms
5,972 KB
testcase_20 AC 693 ms
5,968 KB
testcase_21 AC 656 ms
5,968 KB
testcase_22 WA -
testcase_23 AC 657 ms
5,972 KB
testcase_24 WA -
testcase_25 AC 640 ms
5,972 KB
testcase_26 AC 723 ms
5,972 KB
testcase_27 WA -
testcase_28 AC 715 ms
5,972 KB
testcase_29 AC 656 ms
5,972 KB
testcase_30 WA -
testcase_31 AC 648 ms
5,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    grid = [[0] * (N + 2)]
    apnd = grid.append
    for n in A:
        apnd([0] + n + [0])
    apnd([0] * (N + 2))

    for l in L:
        case1 = search(l, grid)
        _, row1, col1, row2, col2 = case1
        for i in range(row1, row2 + 1):
            line = grid[i][col1:col2]
            grid[i][col1:col2] = list(map(lambda x: int(not x), line))
        print(row1, col1, row2, col2 - 1)

def search(l, grid):
    maxb = -1
    for i in range(1, N + 1):
        for j in range(1, N + 2 - l):
            black = grid[i][j:j+l].count(1)
            if l == 1 and black == 0 and grid[i][j-1] == grid[i][j+1] == 1:
                maxb = 0
                return (maxb, i, j, i, j)
            elif black == l and grid[i][j-1] == grid[i][j+l] == 0:
                maxb = black
                return (maxb, i, j, i, j + l)
            elif maxb < black:
                maxb = black
                ret = (maxb, i, j, i, 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