結果

問題 No.2037 NAND Pyramid
ユーザー titiatitia
提出日時 2022-08-30 03:48:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,149 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 258,472 KB
最終ジャッジ日時 2024-11-06 23:51:35
合計ジャッジ時間 24,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 45 ms
53,504 KB
testcase_04 AC 45 ms
53,376 KB
testcase_05 AC 46 ms
53,632 KB
testcase_06 AC 46 ms
53,376 KB
testcase_07 AC 825 ms
253,824 KB
testcase_08 AC 977 ms
256,256 KB
testcase_09 AC 724 ms
252,800 KB
testcase_10 AC 656 ms
250,496 KB
testcase_11 AC 779 ms
254,080 KB
testcase_12 AC 408 ms
170,112 KB
testcase_13 AC 362 ms
157,952 KB
testcase_14 AC 629 ms
241,152 KB
testcase_15 AC 877 ms
255,616 KB
testcase_16 AC 646 ms
243,968 KB
testcase_17 AC 1,119 ms
258,052 KB
testcase_18 AC 1,124 ms
258,188 KB
testcase_19 AC 1,100 ms
258,276 KB
testcase_20 AC 1,094 ms
258,472 KB
testcase_21 AC 117 ms
98,792 KB
testcase_22 AC 116 ms
98,568 KB
testcase_23 AC 1,025 ms
257,488 KB
testcase_24 AC 441 ms
189,248 KB
testcase_25 AC 1,124 ms
257,904 KB
testcase_26 AC 1,131 ms
257,740 KB
testcase_27 AC 1,127 ms
258,104 KB
testcase_28 AC 1,090 ms
257,932 KB
testcase_29 AC 1,105 ms
257,652 KB
testcase_30 AC 195 ms
120,444 KB
testcase_31 AC 1,149 ms
258,264 KB
testcase_32 AC 1,098 ms
257,924 KB
testcase_33 AC 55 ms
60,800 KB
testcase_34 AC 62 ms
64,384 KB
testcase_35 AC 65 ms
65,280 KB
testcase_36 AC 62 ms
62,976 KB
testcase_37 AC 65 ms
64,000 KB
testcase_38 AC 65 ms
65,280 KB
testcase_39 AC 66 ms
64,256 KB
testcase_40 AC 59 ms
62,336 KB
testcase_41 AC 63 ms
64,384 KB
testcase_42 AC 64 ms
64,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque

N,K=map(int,input().split())
S=list(input().strip())

def calc(S):
    A=["1"]*(len(S)-1)
    for i in range(len(S)-1):
        if S[i]=="1" and S[i+1]=="1":
            A[i]="0"
    return A

for i in range(100):
    if len(S)>=K+1:
        S=calc(S)
    else:
        break

S=deque(S)
while len(S)>=K+2:
    S.popleft()
    S.pop()

S=list(S)
if len(S)==K:
    print("".join(S))
else:
    S=calc(S)
    print("".join(S))

    
0