結果

問題 No.597 concat
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 22:54:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 3,130 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-09 10:45:28
合計ジャッジ時間 5,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,304 KB
testcase_01 AC 132 ms
54,116 KB
testcase_02 AC 132 ms
53,820 KB
testcase_03 AC 131 ms
53,652 KB
testcase_04 AC 126 ms
53,976 KB
testcase_05 AC 129 ms
53,920 KB
testcase_06 AC 135 ms
53,980 KB
testcase_07 AC 135 ms
53,976 KB
testcase_08 AC 135 ms
54,088 KB
testcase_09 AC 134 ms
54,104 KB
testcase_10 AC 133 ms
53,892 KB
testcase_11 AC 132 ms
53,984 KB
testcase_12 AC 137 ms
53,860 KB
testcase_13 AC 133 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

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