結果

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <cmath>
#include <climits>
#include <iomanip>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
int main(){
    ll n,k;
    cin >> n >> k;
    for(int i = 0;i < k;i++){
        ll in;
        cin >> in;
        if(i != k - 1)cout << in << " ";
        else cout << in << endl;
    }
}
0