結果

問題 No.2881 Mod 2^N
ユーザー tottoripapertottoripaper
提出日時 2024-09-12 17:29:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 204,532 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-12 17:29:34
合計ジャッジ時間 5,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = std::int64_t;

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int N;
    ll X, Y;
    std::cin >> N >> X >> Y;

    if(X == Y){
        std::cout << 0 << std::endl;
        return 0;
    }

    if(Y == 1){
        std::cout << 1 << std::endl;
        std::cout << N << std::endl;
        return 0;
    }

    if(__builtin_popcountll(Y) <= 1){
        std::cout << -1 << std::endl;
        return 0;
    }

    std::vector<int> A{N};
    int prev_i = -1;
    for(int i=N-1;i>=0;i--){
        if(Y >> i & 1){
            if(prev_i != -1){
                A.emplace_back(prev_i - i);
            }
            prev_i = i;
        }
    }

    std::cout << A.size() << std::endl;
    for(int i=0;i<A.size();i++){
        std::cout << A[i] << " \n"[i + 1 == A.size()];
    }
}
0