結果

問題 No.2037 NAND Pyramid
ユーザー sotanishysotanishy
提出日時 2022-08-12 22:05:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 116,096 KB
最終ジャッジ日時 2024-09-23 02:37:48
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,420 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 79 ms
101,212 KB
testcase_08 AC 73 ms
100,736 KB
testcase_09 AC 72 ms
96,608 KB
testcase_10 AC 65 ms
87,808 KB
testcase_11 AC 78 ms
99,088 KB
testcase_12 AC 58 ms
79,232 KB
testcase_13 AC 53 ms
73,240 KB
testcase_14 AC 66 ms
89,600 KB
testcase_15 AC 77 ms
101,352 KB
testcase_16 AC 67 ms
89,216 KB
testcase_17 AC 82 ms
112,128 KB
testcase_18 AC 81 ms
112,348 KB
testcase_19 AC 87 ms
112,640 KB
testcase_20 AC 88 ms
112,616 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 93 ms
114,176 KB
testcase_24 AC 91 ms
114,176 KB
testcase_25 AC 78 ms
109,184 KB
testcase_26 AC 81 ms
112,256 KB
testcase_27 AC 87 ms
112,640 KB
testcase_28 AC 78 ms
109,056 KB
testcase_29 AC 80 ms
112,128 KB
testcase_30 AC 93 ms
114,272 KB
testcase_31 AC 91 ms
116,096 KB
testcase_32 AC 88 ms
112,896 KB
testcase_33 AC 42 ms
59,136 KB
testcase_34 AC 43 ms
59,648 KB
testcase_35 AC 44 ms
59,776 KB
testcase_36 AC 43 ms
59,392 KB
testcase_37 AC 43 ms
59,776 KB
testcase_38 AC 43 ms
59,904 KB
testcase_39 AC 44 ms
59,648 KB
testcase_40 AC 42 ms
59,008 KB
testcase_41 AC 42 ms
59,476 KB
testcase_42 AC 44 ms
59,136 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)))
    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