結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,572 KB
testcase_01 AC 37 ms
52,400 KB
testcase_02 AC 37 ms
52,156 KB
testcase_03 AC 37 ms
52,544 KB
testcase_04 AC 37 ms
52,408 KB
testcase_05 AC 36 ms
53,832 KB
testcase_06 AC 36 ms
53,368 KB
testcase_07 AC 228 ms
213,724 KB
testcase_08 AC 110 ms
125,248 KB
testcase_09 AC 197 ms
173,340 KB
testcase_10 AC 98 ms
127,056 KB
testcase_11 AC 250 ms
232,116 KB
testcase_12 AC 128 ms
146,816 KB
testcase_13 AC 67 ms
83,712 KB
testcase_14 AC 167 ms
151,572 KB
testcase_15 AC 167 ms
154,044 KB
testcase_16 AC 144 ms
129,280 KB
testcase_17 AC 90 ms
105,968 KB
testcase_18 AC 90 ms
105,900 KB
testcase_19 AC 247 ms
258,836 KB
testcase_20 AC 250 ms
259,256 KB
testcase_21 AC 147 ms
123,656 KB
testcase_22 AC 145 ms
123,692 KB
testcase_23 AC 178 ms
161,156 KB
testcase_24 AC 180 ms
161,668 KB
testcase_25 AC 109 ms
116,880 KB
testcase_26 AC 126 ms
134,272 KB
testcase_27 AC 225 ms
223,456 KB
testcase_28 AC 145 ms
158,544 KB
testcase_29 AC 153 ms
166,100 KB
testcase_30 AC 229 ms
221,064 KB
testcase_31 AC 262 ms
258,672 KB
testcase_32 AC 296 ms
257,360 KB
testcase_33 AC 53 ms
61,956 KB
testcase_34 AC 54 ms
65,676 KB
testcase_35 AC 59 ms
69,096 KB
testcase_36 AC 54 ms
65,500 KB
testcase_37 AC 57 ms
68,500 KB
testcase_38 AC 55 ms
68,496 KB
testcase_39 AC 57 ms
67,512 KB
testcase_40 AC 46 ms
62,172 KB
testcase_41 AC 46 ms
63,248 KB
testcase_42 AC 50 ms
64,820 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