結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,412 KB
testcase_01 AC 55 ms
50,168 KB
testcase_02 AC 55 ms
49,772 KB
testcase_03 AC 55 ms
49,912 KB
testcase_04 AC 56 ms
50,052 KB
testcase_05 AC 56 ms
50,128 KB
testcase_06 AC 55 ms
50,132 KB
testcase_07 AC 57 ms
50,128 KB
testcase_08 AC 55 ms
49,788 KB
testcase_09 AC 56 ms
50,120 KB
testcase_10 AC 55 ms
50,336 KB
testcase_11 AC 55 ms
49,928 KB
testcase_12 AC 56 ms
50,260 KB
testcase_13 AC 56 ms
49,820 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