結果

問題 No.2037 NAND Pyramid
ユーザー sotanishysotanishy
提出日時 2022-08-12 22:05:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 115,840 KB
最終ジャッジ日時 2024-09-23 02:38:34
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 37 ms
52,248 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 91 ms
101,164 KB
testcase_08 AC 75 ms
101,120 KB
testcase_09 AC 72 ms
96,512 KB
testcase_10 AC 65 ms
88,320 KB
testcase_11 AC 77 ms
99,200 KB
testcase_12 AC 58 ms
79,360 KB
testcase_13 AC 53 ms
73,088 KB
testcase_14 AC 67 ms
89,344 KB
testcase_15 AC 78 ms
101,404 KB
testcase_16 AC 66 ms
88,832 KB
testcase_17 AC 81 ms
112,436 KB
testcase_18 AC 82 ms
112,528 KB
testcase_19 AC 88 ms
112,760 KB
testcase_20 AC 87 ms
112,764 KB
testcase_21 AC 89 ms
108,096 KB
testcase_22 AC 88 ms
107,976 KB
testcase_23 AC 93 ms
114,176 KB
testcase_24 AC 93 ms
114,176 KB
testcase_25 AC 79 ms
109,388 KB
testcase_26 AC 81 ms
112,384 KB
testcase_27 AC 88 ms
112,520 KB
testcase_28 AC 79 ms
109,548 KB
testcase_29 AC 80 ms
112,896 KB
testcase_30 AC 94 ms
114,364 KB
testcase_31 AC 92 ms
115,840 KB
testcase_32 AC 89 ms
112,832 KB
testcase_33 AC 42 ms
59,136 KB
testcase_34 AC 43 ms
59,648 KB
testcase_35 AC 42 ms
60,160 KB
testcase_36 AC 43 ms
59,392 KB
testcase_37 AC 42 ms
59,776 KB
testcase_38 AC 43 ms
59,776 KB
testcase_39 AC 42 ms
59,648 KB
testcase_40 AC 42 ms
59,264 KB
testcase_41 AC 40 ms
59,020 KB
testcase_42 AC 42 ms
59,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def calc(S):
    nS = [0] * (len(S)-1)
    for i in range(len(S)-1):
        nS[i] = 1 ^ (S[i] & S[i+1])
    return nS

N, K = map(int, input().split())
S = list(map(int, input().rstrip()))
for k in range(2):
    if k == N-K:
        print("".join(map(str, S)))
        exit()
    S = calc(S)

k = N - K
if k % 2 == 0:
    m = k // 2 - 1
else:
    S = calc(S)
    m = (k - 1) // 2 - 1
print("".join(map(str, S[m:len(S)-m])))
0