結果

問題 No.597 concat
ユーザー newlife171128
提出日時 2017-11-28 21:57:13
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 1,338 ms
コンパイル使用メモリ 69,792 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-27 13:14:51
合計ジャッジ時間 1,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 1 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <vector>
#include <cmath>
#include <string>
#include<sstream>
#include <queue>
#include <limits>
#include <cstdlib>
#include <deque>
using namespace std;

int main() {

	int n= 0;

	cin>>n;

	string str;
	string ans;
	for(int i=0; i<2; i++){
		cin>>str;

		ans +=str;
	}

	cout<<ans<<endl;

	return 0;
}
0