結果
| 問題 |
No.5001 排他的論理和でランニング
|
| ユーザー |
cumin
|
| 提出日時 | 2020-03-27 22:02:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.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 / |
| 純コード判定しない問題か言語 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 50 |
ソースコード
#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;
}
cumin