結果

問題 No.2037 NAND Pyramid
ユーザー first_vilfirst_vil
提出日時 2022-08-12 22:18:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 183,552 KB
最終ジャッジ日時 2024-09-23 02:54:35
合計ジャッジ時間 6,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 142 ms
146,304 KB
testcase_08 AC 158 ms
156,800 KB
testcase_09 AC 131 ms
136,320 KB
testcase_10 AC 102 ms
110,976 KB
testcase_11 AC 132 ms
136,448 KB
testcase_12 AC 85 ms
96,896 KB
testcase_13 AC 81 ms
92,748 KB
testcase_14 AC 98 ms
105,600 KB
testcase_15 AC 145 ms
145,664 KB
testcase_16 AC 99 ms
104,832 KB
testcase_17 AC 149 ms
152,064 KB
testcase_18 AC 151 ms
152,192 KB
testcase_19 AC 187 ms
182,528 KB
testcase_20 AC 184 ms
182,528 KB
testcase_21 AC 79 ms
91,648 KB
testcase_22 AC 81 ms
92,416 KB
testcase_23 AC 184 ms
183,424 KB
testcase_24 AC 184 ms
183,552 KB
testcase_25 AC 184 ms
182,656 KB
testcase_26 AC 149 ms
151,936 KB
testcase_27 AC 183 ms
182,912 KB
testcase_28 AC 180 ms
182,784 KB
testcase_29 AC 147 ms
152,192 KB
testcase_30 AC 182 ms
182,656 KB
testcase_31 AC 148 ms
152,012 KB
testcase_32 AC 187 ms
182,656 KB
testcase_33 AC 44 ms
59,136 KB
testcase_34 AC 45 ms
60,032 KB
testcase_35 AC 44 ms
59,904 KB
testcase_36 AC 44 ms
59,648 KB
testcase_37 AC 45 ms
60,544 KB
testcase_38 AC 45 ms
60,032 KB
testcase_39 AC 44 ms
60,416 KB
testcase_40 AC 45 ms
60,032 KB
testcase_41 AC 44 ms
60,160 KB
testcase_42 AC 44 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353


def next(s):
    a = []
    for j in range(len(s) - 1):
        a.append("0" if s[j : j + 2] == "11" else "1")
    return a


def show(s):
    n = len(s)
    t = [" ".join(list(s))]
    m = [s]
    for i in range(1, n)[::-1]:
        t.append(" " * (n - i) + " ".join(next(m[-1])))
        m.append("".join(next(m[-1])))
    for v in t[::-1]:
        print(v)


n, k = mi()
s = input()

for _ in range(2):
    s = "".join(next(s))
    n -= 1
    if k == n:
        print(s)
        exit(0)

for _ in range(2):
    s = "".join(next(s))
    n -= 1
    if k == n:
        print(s)
        exit(0)
    if (k & 1) == (n & 1):
        d = (n - k) // 2
        print(s[d : n - d])
        exit(0)
0