結果

問題 No.2344 (l+r)^2
ユーザー i_am_noobi_am_noob
提出日時 2023-06-24 00:37:43
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 202,272 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 04:22:05
合計ジャッジ時間 3,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pii=pair<int,int>;

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int N=200005,M=35;
int n,m;
unsigned a[N],b[N];

void ahcorz(){
    cin >> n >> m;
    for(int i=0; i<n; ++i) cin >> a[i];
    if(n>=M){
        for(int i=0; i<M; ++i){
            b[i]=0;
            for(int j=0; j<=n-M; ++j) if(((n-M)&j)==j) b[i]^=a[i+j]&1;
        }
        for(int i=0; i<M; ++i) a[i]=b[i];
        n=M;
    }
    for(int j=0; j<n-1; ++j){
        for(int i=0; i<n-j-1; ++i) b[i]=(a[i]+a[i+1])*(a[i]+a[i+1]);
        for(int i=0; i<n-j-1; ++i) a[i]=b[i];
    }
    cout << a[0]%(1<<m) << "\n";
}

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    int t; cin >> t;
    while(t--) ahcorz();
}
0