結果

問題 No.5001 排他的論理和でランニング
ユーザー okkuukenken
提出日時 2022-06-03 22:49:17
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 635 ms
実行使用メモリ 6,956 KB
スコア 0
最終ジャッジ日時 2022-06-03 22:49:26
合計ジャッジ時間 8,968 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main(){
	int n,m,a;
	cin>>m;
	for(int i=0;i<m;i++){
		cin>>a;
		cout<<a<<(i+1==m?'\n':' ');
	}
}
0