結果

問題 No.2037 NAND Pyramid
ユーザー shauuebbitshauuebbit
提出日時 2022-09-07 19:45:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 610 bytes
コンパイル時間 3,283 ms
コンパイル使用メモリ 222,880 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 12:22:21
合計ジャッジ時間 33,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 5 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 647 ms
5,376 KB
testcase_08 AC 1,867 ms
6,944 KB
testcase_09 AC 478 ms
5,376 KB
testcase_10 AC 1,270 ms
5,376 KB
testcase_11 AC 202 ms
5,376 KB
testcase_12 AC 73 ms
5,376 KB
testcase_13 AC 626 ms
5,376 KB
testcase_14 AC 711 ms
5,376 KB
testcase_15 AC 1,072 ms
5,376 KB
testcase_16 AC 847 ms
5,376 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,201 ms
5,376 KB
testcase_20 AC 1,203 ms
5,376 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 AC 14 ms
5,376 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,195 ms
5,376 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 14 ms
5,376 KB
testcase_31 AC 1,199 ms
5,376 KB
testcase_32 AC 1,196 ms
5,376 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 17 ms
5,376 KB
testcase_35 AC 15 ms
5,376 KB
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 6 ms
5,376 KB
testcase_38 AC 7 ms
5,376 KB
testcase_39 AC 6 ms
5,376 KB
testcase_40 AC 12 ms
5,376 KB
testcase_41 AC 19 ms
5,376 KB
testcase_42 AC 19 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx,avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>

constexpr int LEN = 4e5;

using namespace std;

int main() {
    int N, K;
    cin >> N >> K;

    string S;
    cin >> S;

    reverse(S.begin(), S.end());

    bitset<LEN> s(S);

    for (int i = 0; i < N - K; i++) {
        if (i & 1) {
            s |= s >> 1;
        } else {
            s &= s >> 1;
        }
    }

    if ((N - K) & 1) s.flip();

    string ans = s.to_string().substr(LEN - K, K);

    reverse(ans.begin(), ans.end());

    cout << ans << endl;

    return 0;
}
0