結果

問題 No.2037 NAND Pyramid
ユーザー 👑 KazunKazun
提出日時 2022-08-12 23:32:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,208 KB
最終ジャッジ日時 2024-09-23 04:12:49
合計ジャッジ時間 5,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 100 ms
106,496 KB
testcase_08 AC 87 ms
104,064 KB
testcase_09 AC 96 ms
102,912 KB
testcase_10 AC 66 ms
86,784 KB
testcase_11 AC 105 ms
105,624 KB
testcase_12 AC 80 ms
90,240 KB
testcase_13 AC 61 ms
76,800 KB
testcase_14 AC 84 ms
96,768 KB
testcase_15 AC 94 ms
104,988 KB
testcase_16 AC 82 ms
95,780 KB
testcase_17 AC 85 ms
110,848 KB
testcase_18 AC 84 ms
110,700 KB
testcase_19 AC 117 ms
110,592 KB
testcase_20 AC 114 ms
110,580 KB
testcase_21 AC 139 ms
110,848 KB
testcase_22 AC 141 ms
110,976 KB
testcase_23 AC 138 ms
110,592 KB
testcase_24 AC 139 ms
110,848 KB
testcase_25 AC 86 ms
110,976 KB
testcase_26 AC 86 ms
110,628 KB
testcase_27 AC 114 ms
111,104 KB
testcase_28 AC 86 ms
111,208 KB
testcase_29 AC 85 ms
110,848 KB
testcase_30 AC 138 ms
110,692 KB
testcase_31 AC 115 ms
110,940 KB
testcase_32 AC 114 ms
110,548 KB
testcase_33 AC 46 ms
59,392 KB
testcase_34 AC 52 ms
63,360 KB
testcase_35 AC 51 ms
63,744 KB
testcase_36 AC 53 ms
63,104 KB
testcase_37 AC 50 ms
63,616 KB
testcase_38 AC 51 ms
63,872 KB
testcase_39 AC 52 ms
63,616 KB
testcase_40 AC 46 ms
59,904 KB
testcase_41 AC 46 ms
60,032 KB
testcase_42 AC 45 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Run_Length_Encoding(S):
    """ランレングス圧縮

    S:文字列
    """
    if not S:
        return []

    R=[[S[0],1]]

    for i in range(1,len(S)):
        if R[-1][0]==S[i]:
            R[-1][1]+=1
        else:
            R.append([S[i],1])

    return R
#==================================================
def solve():
    N,K=map(int,input().split())
    S=list(map(int,input()))

    A=[0]*(N-1); B=[0]*(N-2)
    for i in range(N-1):
        A[i]=1-S[i]*S[i+1]
    for i in range(N-2):
        B[i]=1-A[i]*A[i+1]

    if len(B)%2==0:
        A,B=B,A

    if K%2==0:
        t=(len(A)-K)//2
        Ans=A[t:len(A)-t]
    else:
        t=(len(B)-K)//2
        Ans=B[t:len(B)-t]
    print(*Ans,sep="")

solve()
0