結果

問題 No.5001 排他的論理和でランニング
ユーザー SotaUNSotaUN
提出日時 2020-08-03 17:21:16
言語 C++14
(gcc 12.3.0 + boost 1.83.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
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
1,564 KB
testcase_01 AC 6 ms
1,560 KB
testcase_02 AC 16 ms
1,564 KB
testcase_03 AC 49 ms
1,560 KB
testcase_04 AC 99 ms
1,564 KB
testcase_05 AC 38 ms
1,564 KB
testcase_06 AC 19 ms
1,560 KB
testcase_07 AC 32 ms
1,564 KB
testcase_08 AC 128 ms
1,564 KB
testcase_09 AC 3 ms
1,560 KB
testcase_10 AC 38 ms
1,560 KB
testcase_11 AC 51 ms
1,564 KB
testcase_12 AC 9 ms
1,560 KB
testcase_13 AC 116 ms
1,560 KB
testcase_14 AC 63 ms
1,564 KB
testcase_15 AC 31 ms
1,564 KB
testcase_16 AC 12 ms
1,560 KB
testcase_17 AC 28 ms
1,560 KB
testcase_18 AC 61 ms
1,560 KB
testcase_19 AC 21 ms
1,560 KB
testcase_20 AC 21 ms
1,564 KB
testcase_21 AC 29 ms
1,560 KB
testcase_22 AC 5 ms
1,564 KB
testcase_23 AC 6 ms
1,560 KB
testcase_24 AC 5 ms
1,564 KB
testcase_25 AC 17 ms
1,560 KB
testcase_26 AC 13 ms
1,564 KB
testcase_27 AC 6 ms
1,564 KB
testcase_28 AC 53 ms
1,564 KB
testcase_29 AC 49 ms
1,560 KB
testcase_30 AC 13 ms
1,560 KB
testcase_31 AC 62 ms
1,564 KB
testcase_32 AC 27 ms
1,560 KB
testcase_33 AC 119 ms
1,564 KB
testcase_34 AC 109 ms
1,564 KB
testcase_35 AC 52 ms
1,560 KB
testcase_36 AC 69 ms
1,564 KB
testcase_37 AC 38 ms
1,564 KB
testcase_38 AC 19 ms
1,564 KB
testcase_39 AC 47 ms
1,560 KB
testcase_40 AC 30 ms
1,560 KB
testcase_41 AC 13 ms
1,560 KB
testcase_42 AC 45 ms
1,564 KB
testcase_43 AC 48 ms
1,560 KB
testcase_44 AC 57 ms
1,560 KB
testcase_45 AC 64 ms
1,560 KB
testcase_46 AC 24 ms
1,560 KB
testcase_47 AC 31 ms
1,560 KB
testcase_48 AC 20 ms
1,560 KB
testcase_49 AC 103 ms
1,564 KB
権限があれば一括ダウンロードができます

ソースコード

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