結果

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

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int n,m;cin>>n>>m;
    for(int i = 0; m > i; i++){
        int t;cin>>t;
        cout << t;
        if(i+1 != m)cout << " ";
    }
    cout << endl;
}
0