結果

問題 No.597 concat
ユーザー YOSHIYOSHI
提出日時 2021-03-20 19:13:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 75,292 KB
実行使用メモリ 37,364 KB
最終ジャッジ日時 2024-11-21 08:07:31
合計ジャッジ時間 5,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

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