結果

問題 No.2037 NAND Pyramid
ユーザー rlangevinrlangevin
提出日時 2024-02-05 12:31:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 152,612 KB
最終ジャッジ日時 2024-09-28 11:33:14
合計ジャッジ時間 6,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 130 ms
144,768 KB
testcase_08 AC 120 ms
126,080 KB
testcase_09 AC 123 ms
137,600 KB
testcase_10 AC 86 ms
120,448 KB
testcase_11 AC 133 ms
139,776 KB
testcase_12 AC 93 ms
106,676 KB
testcase_13 AC 71 ms
93,312 KB
testcase_14 AC 106 ms
123,136 KB
testcase_15 AC 125 ms
144,000 KB
testcase_16 AC 104 ms
122,752 KB
testcase_17 AC 121 ms
136,352 KB
testcase_18 AC 120 ms
135,964 KB
testcase_19 AC 156 ms
145,060 KB
testcase_20 AC 153 ms
145,440 KB
testcase_21 AC 178 ms
152,108 KB
testcase_22 AC 175 ms
152,612 KB
testcase_23 AC 180 ms
152,068 KB
testcase_24 AC 179 ms
152,256 KB
testcase_25 AC 124 ms
135,948 KB
testcase_26 AC 124 ms
135,712 KB
testcase_27 AC 156 ms
145,300 KB
testcase_28 AC 126 ms
136,084 KB
testcase_29 AC 124 ms
135,712 KB
testcase_30 AC 174 ms
152,468 KB
testcase_31 AC 156 ms
144,956 KB
testcase_32 AC 151 ms
145,152 KB
testcase_33 AC 44 ms
60,800 KB
testcase_34 AC 50 ms
64,128 KB
testcase_35 AC 52 ms
64,256 KB
testcase_36 AC 50 ms
63,744 KB
testcase_37 AC 50 ms
64,256 KB
testcase_38 AC 49 ms
65,152 KB
testcase_39 AC 50 ms
64,768 KB
testcase_40 AC 47 ms
60,672 KB
testcase_41 AC 44 ms
61,184 KB
testcase_42 AC 43 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S = list(input())
S = list(map(int, S))
ans = [[], [], []]
ans[0] = S
for i in range(2):
    for j in range(len(ans[i]) - 1):
        ans[i + 1].append(1 - (ans[i][j]&ans[i][j+1]))

N -= K + 1
if N % 2 == 0:
    d = N // 2
    print(*ans[1][d:len(ans[1])-d], sep="")
else:
    d = N // 2
    print(*ans[2][d:len(ans[2])-d], sep="")
0