結果

問題 No.2037 NAND Pyramid
ユーザー asumo0729asumo0729
提出日時 2022-08-20 17:14:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 115,104 KB
最終ジャッジ日時 2024-10-09 09:33:58
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,284 KB
testcase_01 AC 36 ms
52,576 KB
testcase_02 AC 37 ms
52,484 KB
testcase_03 AC 37 ms
53,024 KB
testcase_04 AC 37 ms
53,188 KB
testcase_05 AC 37 ms
52,688 KB
testcase_06 AC 37 ms
51,812 KB
testcase_07 AC 104 ms
115,104 KB
testcase_08 AC 106 ms
101,252 KB
testcase_09 AC 95 ms
110,768 KB
testcase_10 AC 87 ms
102,828 KB
testcase_11 AC 96 ms
110,628 KB
testcase_12 AC 71 ms
85,472 KB
testcase_13 AC 67 ms
82,808 KB
testcase_14 AC 85 ms
100,096 KB
testcase_15 AC 103 ms
98,440 KB
testcase_16 AC 83 ms
99,600 KB
testcase_17 AC 120 ms
107,432 KB
testcase_18 AC 119 ms
110,968 KB
testcase_19 AC 124 ms
112,888 KB
testcase_20 AC 126 ms
109,568 KB
testcase_21 AC 123 ms
114,740 KB
testcase_22 AC 125 ms
114,504 KB
testcase_23 AC 126 ms
111,572 KB
testcase_24 AC 125 ms
114,896 KB
testcase_25 AC 120 ms
107,996 KB
testcase_26 AC 118 ms
110,512 KB
testcase_27 AC 122 ms
109,756 KB
testcase_28 AC 127 ms
107,628 KB
testcase_29 AC 128 ms
107,584 KB
testcase_30 AC 129 ms
115,024 KB
testcase_31 AC 124 ms
109,884 KB
testcase_32 AC 126 ms
109,780 KB
testcase_33 AC 43 ms
58,752 KB
testcase_34 AC 48 ms
61,952 KB
testcase_35 AC 51 ms
62,592 KB
testcase_36 AC 50 ms
60,288 KB
testcase_37 AC 49 ms
61,440 KB
testcase_38 AC 50 ms
61,952 KB
testcase_39 AC 48 ms
62,080 KB
testcase_40 AC 45 ms
60,032 KB
testcase_41 AC 46 ms
61,184 KB
testcase_42 AC 47 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S = input()
SN1 = []
SN2 = []
for i in range(N - 1):
    if S[i] == S[i + 1] == '1':
        x = '0'
    else:
        x= '1'
    SN1.append(x)
for i in range(N - 2):
    if SN1[i] == SN1[i + 1] == '1':
        x = '0'
    else:
        x= '1'
    SN2.append(x)
if (N - 1 - K) % 2 == 0:
    h = (N - 1 - K) // 2
    ans = SN1[h:N - 1 -h]
else:
    h = (N - 2 - K) // 2
    ans = SN2[h:N - 2 -h]
ans = ''.join(ans)
print(ans)
0