結果

問題 No.597 concat
ユーザー YOSHIYOSHI
提出日時 2021-03-20 19:13:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 3,222 ms
コンパイル使用メモリ 83,412 KB
実行使用メモリ 50,584 KB
最終ジャッジ日時 2024-05-01 06:19:29
合計ジャッジ時間 4,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,204 KB
testcase_01 AC 55 ms
50,532 KB
testcase_02 AC 51 ms
50,584 KB
testcase_03 AC 54 ms
50,316 KB
testcase_04 AC 54 ms
50,140 KB
testcase_05 AC 53 ms
50,164 KB
testcase_06 AC 51 ms
50,504 KB
testcase_07 AC 52 ms
50,476 KB
testcase_08 AC 51 ms
50,356 KB
testcase_09 AC 52 ms
50,264 KB
testcase_10 AC 54 ms
50,452 KB
testcase_11 AC 53 ms
50,460 KB
testcase_12 AC 52 ms
50,508 KB
testcase_13 AC 52 ms
50,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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