結果

問題 No.5001 排他的論理和でランニング
ユーザー cumincumin
提出日時 2020-03-27 22:02:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 1,500 ms
コード長 349 bytes
コンパイル時間 1,323 ms
実行使用メモリ 8,944 KB
スコア 24,513,786
最終ジャッジ日時 2020-03-27 22:03:10
ジャッジサーバーID
(参考情報)
judge6 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
6,896 KB
testcase_01 AC 6 ms
6,892 KB
testcase_02 AC 15 ms
8,940 KB
testcase_03 AC 49 ms
6,896 KB
testcase_04 AC 99 ms
8,940 KB
testcase_05 AC 38 ms
6,896 KB
testcase_06 AC 19 ms
6,896 KB
testcase_07 AC 32 ms
6,896 KB
testcase_08 AC 133 ms
8,940 KB
testcase_09 AC 3 ms
6,896 KB
testcase_10 AC 38 ms
6,896 KB
testcase_11 AC 51 ms
8,900 KB
testcase_12 AC 9 ms
8,900 KB
testcase_13 AC 121 ms
8,936 KB
testcase_14 AC 61 ms
8,940 KB
testcase_15 AC 31 ms
8,940 KB
testcase_16 AC 13 ms
8,936 KB
testcase_17 AC 27 ms
6,896 KB
testcase_18 AC 65 ms
6,896 KB
testcase_19 AC 22 ms
8,936 KB
testcase_20 AC 20 ms
6,896 KB
testcase_21 AC 29 ms
8,940 KB
testcase_22 AC 5 ms
8,936 KB
testcase_23 AC 6 ms
8,940 KB
testcase_24 AC 5 ms
8,940 KB
testcase_25 AC 17 ms
8,936 KB
testcase_26 AC 12 ms
6,896 KB
testcase_27 AC 6 ms
8,936 KB
testcase_28 AC 52 ms
6,892 KB
testcase_29 AC 47 ms
6,896 KB
testcase_30 AC 13 ms
8,896 KB
testcase_31 AC 61 ms
8,940 KB
testcase_32 AC 27 ms
6,892 KB
testcase_33 AC 117 ms
6,900 KB
testcase_34 AC 108 ms
8,936 KB
testcase_35 AC 53 ms
8,940 KB
testcase_36 AC 68 ms
8,936 KB
testcase_37 AC 37 ms
6,900 KB
testcase_38 AC 19 ms
8,944 KB
testcase_39 AC 45 ms
8,940 KB
testcase_40 AC 31 ms
8,936 KB
testcase_41 AC 13 ms
8,900 KB
testcase_42 AC 45 ms
6,896 KB
testcase_43 AC 48 ms
8,944 KB
testcase_44 AC 60 ms
6,896 KB
testcase_45 AC 66 ms
8,936 KB
testcase_46 AC 25 ms
8,940 KB
testcase_47 AC 31 ms
6,896 KB
testcase_48 AC 21 ms
6,900 KB
testcase_49 AC 103 ms
6,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n)for(long long i=0;i<(n);i++)
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
const ll INF=1e18;
const int MOD=1e9+7;
const double pi=acos(-1);

int main(){
  int n,m;
  cin >> n >> m;
  rep(i,m){
    ll a;
    cin >> a;
    if(i!=0)cout<<" " ;
    cout << a;
  }
  cout << endl;
}
0