結果

問題 No.5001 排他的論理和でランニング
ユーザー KKT89
提出日時 2020-07-13 15:04:42
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 17 ms / 1,500 ms
コード長 493 bytes
コンパイル時間 884 ms
実行使用メモリ 1,600 KB
スコア 24,513,786
最終ジャッジ日時 2020-07-13 15:04:48
ジャッジサーバーID
(参考情報)
judge8 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
using namespace std;
typedef long long int ll;
using ull = unsigned long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,m; cin >> n >> m;
    for(int i=0;i<m;i++){
        int a; cin >> a;
        printf("%d ",a);
    }
    printf("\n");
}
0