結果

問題 No.597 concat
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 22:49:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 3,881 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-12-29 18:26:16
合計ジャッジ時間 6,107 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Concat {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		String str = "",add = "";
		for(int i = 0;i < N;i++){
			add = s.next();
			str = str.concat(add);
		}
		s.close();
		System.out.println(str);

	}

}
0