結果

問題 No.597 concat
ユーザー jimanojimano
提出日時 2018-01-23 23:27:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 3,217 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 50,356 KB
最終ジャッジ日時 2024-06-07 19:20:16
合計ジャッジ時間 4,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,260 KB
testcase_01 AC 54 ms
50,084 KB
testcase_02 AC 55 ms
50,352 KB
testcase_03 AC 54 ms
50,028 KB
testcase_04 AC 54 ms
50,064 KB
testcase_05 AC 56 ms
49,960 KB
testcase_06 AC 55 ms
50,336 KB
testcase_07 AC 55 ms
50,024 KB
testcase_08 AC 56 ms
50,256 KB
testcase_09 AC 57 ms
50,268 KB
testcase_10 AC 56 ms
50,220 KB
testcase_11 AC 55 ms
50,352 KB
testcase_12 AC 56 ms
50,244 KB
testcase_13 AC 55 ms
50,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class No0597 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int N = Integer.parseInt(br.readLine());
			StringBuilder sb = new StringBuilder();

			for (int i = 0; i < N; i++) {
				sb.append(br.readLine());
			}
			System.out.println(sb.toString());
		} catch (IOException e) {
			e.printStackTrace();
		}

	}
}
0