結果

問題 No.2881 Mod 2^N
ユーザー GOTKAKOGOTKAKO
提出日時 2024-09-08 12:54:31
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 2,489 ms
コンパイル使用メモリ 203,772 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-08 12:54:35
合計ジャッジ時間 3,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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

    long long N,X,Y; cin >> N >> X >> Y;
    if(X == Y){cout << 0 << endl; return 0;}
    if(Y%2 == 0){cout << "-1" << endl; return 0;}
    
    int zero = 0;
    vector<int> need;
    for(int i=N-1; i>=0; i--){
        if((1LL<<i)&Y) need.push_back(zero),zero = 0;
        else zero++;
    }
    cout << need.size()+60 << endl;
    for(int i=0; i<60; i++) cout << 1 << " ";
    for(auto &n : need) cout << n+1 << " "; cout << "\n";
}
0