結果

問題 No.2037 NAND Pyramid
ユーザー hir355hir355
提出日時 2022-08-12 22:02:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 259,040 KB
最終ジャッジ日時 2024-09-23 02:34:24
合計ジャッジ時間 6,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 235 ms
213,536 KB
testcase_08 AC 113 ms
125,312 KB
testcase_09 AC 200 ms
173,508 KB
testcase_10 AC 99 ms
126,812 KB
testcase_11 AC 254 ms
232,376 KB
testcase_12 AC 131 ms
146,892 KB
testcase_13 AC 67 ms
83,552 KB
testcase_14 AC 165 ms
151,704 KB
testcase_15 AC 165 ms
154,184 KB
testcase_16 AC 146 ms
129,392 KB
testcase_17 AC 93 ms
106,480 KB
testcase_18 AC 90 ms
106,240 KB
testcase_19 AC 249 ms
258,912 KB
testcase_20 AC 252 ms
259,040 KB
testcase_21 AC 150 ms
123,616 KB
testcase_22 AC 148 ms
123,656 KB
testcase_23 AC 182 ms
161,520 KB
testcase_24 AC 180 ms
161,484 KB
testcase_25 AC 107 ms
116,984 KB
testcase_26 AC 124 ms
134,796 KB
testcase_27 AC 226 ms
223,548 KB
testcase_28 AC 147 ms
158,756 KB
testcase_29 AC 155 ms
166,552 KB
testcase_30 AC 233 ms
221,056 KB
testcase_31 AC 262 ms
258,760 KB
testcase_32 AC 277 ms
257,508 KB
testcase_33 AC 49 ms
62,316 KB
testcase_34 AC 54 ms
65,792 KB
testcase_35 AC 58 ms
68,864 KB
testcase_36 AC 61 ms
65,408 KB
testcase_37 AC 57 ms
68,352 KB
testcase_38 AC 55 ms
67,200 KB
testcase_39 AC 56 ms
66,816 KB
testcase_40 AC 48 ms
62,080 KB
testcase_41 AC 47 ms
61,568 KB
testcase_42 AC 51 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
s = list(map(int, input()))
while n != k:
    while n % 3 != k % 3:
        t = []
        for i in range(n - 1):
            if s[i] & s[i + 1]:
                t.append(0)
            else:
                t.append(1)
        s = t[:]
        n -= 1
    x = (n - k) // 3
    if x > 0:
        s = s[x:-x]
        n = len(s)
print(*t, sep='')
0