結果

問題 No.597 concat
ユーザー マサマサ
提出日時 2022-02-08 21:52:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 2,551 ms
コンパイル使用メモリ 77,324 KB
実行使用メモリ 54,700 KB
最終ジャッジ日時 2024-06-23 17:42:36
合計ジャッジ時間 5,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,240 KB
testcase_01 AC 135 ms
54,360 KB
testcase_02 AC 134 ms
53,876 KB
testcase_03 AC 134 ms
54,440 KB
testcase_04 AC 136 ms
54,100 KB
testcase_05 AC 133 ms
53,992 KB
testcase_06 AC 133 ms
54,144 KB
testcase_07 AC 135 ms
53,992 KB
testcase_08 AC 136 ms
54,232 KB
testcase_09 AC 134 ms
53,964 KB
testcase_10 AC 134 ms
54,252 KB
testcase_11 AC 135 ms
54,700 KB
testcase_12 AC 135 ms
54,204 KB
testcase_13 AC 133 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		
		String str = "";
		for (int i = 0; i < n; i++) {
			String s = sc.next();
			str += s;
		}
		System.out.println(str);
		sc.close();
	}
}
0