結果

問題 No.597 concat
ユーザー YOSHIYOSHI
提出日時 2021-03-20 19:16:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 4,423 ms
コンパイル使用メモリ 74,888 KB
実行使用メモリ 50,388 KB
最終ジャッジ日時 2024-05-01 06:22:41
合計ジャッジ時間 4,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,356 KB
testcase_01 AC 46 ms
49,884 KB
testcase_02 AC 47 ms
50,388 KB
testcase_03 AC 48 ms
50,320 KB
testcase_04 AC 48 ms
50,072 KB
testcase_05 AC 48 ms
50,044 KB
testcase_06 AC 47 ms
50,284 KB
testcase_07 AC 46 ms
50,316 KB
testcase_08 AC 47 ms
50,048 KB
testcase_09 AC 48 ms
50,016 KB
testcase_10 AC 47 ms
50,220 KB
testcase_11 AC 51 ms
50,244 KB
testcase_12 AC 49 ms
50,272 KB
testcase_13 AC 49 ms
50,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000597_Main2 {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		int n = Integer.parseInt(br.readLine());
		StringBuilder s = new StringBuilder();
		for(int i = 0; i < n; i++) {
			s.append(br.readLine());
		}
		System.out.println(s);
	}
}
0