結果

問題 No.2037 NAND Pyramid
ユーザー ir5ir5
提出日時 2024-06-16 20:19:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 1,237 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 95,488 KB
最終ジャッジ日時 2024-06-16 20:19:14
合計ジャッジ時間 6,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 88 ms
86,144 KB
testcase_08 AC 73 ms
81,024 KB
testcase_09 AC 81 ms
85,376 KB
testcase_10 AC 60 ms
71,424 KB
testcase_11 AC 85 ms
87,168 KB
testcase_12 AC 68 ms
75,136 KB
testcase_13 AC 58 ms
66,688 KB
testcase_14 AC 70 ms
77,568 KB
testcase_15 AC 83 ms
85,760 KB
testcase_16 AC 71 ms
76,288 KB
testcase_17 AC 74 ms
82,560 KB
testcase_18 AC 75 ms
82,816 KB
testcase_19 AC 97 ms
90,624 KB
testcase_20 AC 92 ms
90,624 KB
testcase_21 AC 86 ms
82,816 KB
testcase_22 AC 86 ms
83,072 KB
testcase_23 AC 109 ms
95,104 KB
testcase_24 AC 98 ms
95,232 KB
testcase_25 AC 72 ms
82,688 KB
testcase_26 AC 73 ms
82,560 KB
testcase_27 AC 89 ms
90,496 KB
testcase_28 AC 71 ms
82,432 KB
testcase_29 AC 73 ms
83,072 KB
testcase_30 AC 101 ms
95,488 KB
testcase_31 AC 86 ms
88,960 KB
testcase_32 AC 88 ms
90,368 KB
testcase_33 AC 47 ms
58,752 KB
testcase_34 AC 50 ms
60,032 KB
testcase_35 AC 50 ms
60,160 KB
testcase_36 AC 49 ms
60,032 KB
testcase_37 AC 48 ms
60,416 KB
testcase_38 AC 50 ms
60,544 KB
testcase_39 AC 50 ms
60,288 KB
testcase_40 AC 47 ms
58,880 KB
testcase_41 AC 47 ms
58,368 KB
testcase_42 AC 47 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, k, s):
    def conv(s):
        n = len(s)
        return [1 - s[i] * s[i + 1] for i in range(n - 1)]

    for _ in range(2):
        s = conv(s)
        if len(s) == k:
            return s

    # len(s) - 2 * r >= k
    r = (len(s) - k - 1) // 2
    if r > 0:
        s = s[r:-r]

    while len(s) > k:
        s = conv(s)
    return s


def main():
    n, k = list(map(int, input().split()))
    s = [int(x) for x in input().rstrip()]
    ans = solve(n, k, s)
    print("".join(str(x) for x in ans))


main()
0