結果

問題 No.1456 Range Xor
ユーザー MtSaka
提出日時 2021-03-31 20:53:20
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 1,753 ms
コンパイル使用メモリ 165,556 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-15 08:13:34
合計ジャッジ時間 4,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,s,n) for(int i=s;i<n;i++)
using namespace std;
using ll=long long;
void n(ll M){
    assert(M>=1);
    assert(M<=100000);
}
void k(ll K){
    assert(K>=0);
    assert(K<=1000000000);
}
int main(){
    ll nn,kk;
    cin>>nn>>kk;
    n(nn);
    k(kk);
    rep(i,0,nn){
            ll a;
            cin>>a;
            k(a);
    }
}
    
0