結果

問題 No.2037 NAND Pyramid
ユーザー 👑 rin204rin204
提出日時 2022-08-15 20:38:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 823 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 117,376 KB
最終ジャッジ日時 2024-10-02 08:55:54
合計ジャッジ時間 6,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 96 ms
105,344 KB
testcase_08 AC 80 ms
101,632 KB
testcase_09 AC 93 ms
102,872 KB
testcase_10 AC 59 ms
84,224 KB
testcase_11 AC 103 ms
105,728 KB
testcase_12 AC 80 ms
90,112 KB
testcase_13 AC 57 ms
75,520 KB
testcase_14 AC 77 ms
94,464 KB
testcase_15 AC 91 ms
103,640 KB
testcase_16 AC 78 ms
93,952 KB
testcase_17 AC 73 ms
105,728 KB
testcase_18 AC 72 ms
106,220 KB
testcase_19 AC 107 ms
112,896 KB
testcase_20 AC 110 ms
112,256 KB
testcase_21 AC 130 ms
114,560 KB
testcase_22 AC 130 ms
114,432 KB
testcase_23 AC 134 ms
117,376 KB
testcase_24 AC 135 ms
116,864 KB
testcase_25 AC 72 ms
106,112 KB
testcase_26 AC 72 ms
105,728 KB
testcase_27 AC 110 ms
112,764 KB
testcase_28 AC 72 ms
105,856 KB
testcase_29 AC 72 ms
105,984 KB
testcase_30 AC 133 ms
117,264 KB
testcase_31 AC 106 ms
111,872 KB
testcase_32 AC 109 ms
112,768 KB
testcase_33 AC 42 ms
59,136 KB
testcase_34 AC 48 ms
62,208 KB
testcase_35 AC 47 ms
63,360 KB
testcase_36 AC 49 ms
62,592 KB
testcase_37 AC 48 ms
63,104 KB
testcase_38 AC 48 ms
62,720 KB
testcase_39 AC 48 ms
63,360 KB
testcase_40 AC 43 ms
59,392 KB
testcase_41 AC 43 ms
59,392 KB
testcase_42 AC 42 ms
58,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
S = list(map(int, input()))
T = [1 ^ (S[i] & S[i + 1]) for i in range(n - 1)]
x = (len(T) - k) // 2
T = T[x:len(T) - x]
if len(T) != k:
    T = [1 ^ (T[i] & T[i + 1]) for i in range(k)]
print(*T, sep="")
0