結果

問題 No.597 concat
ユーザー FfalconokeFfalconoke
提出日時 2017-12-08 18:12:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 44,636 KB
最終ジャッジ日時 2024-11-29 19:40:02
合計ジャッジ時間 5,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,620 KB
testcase_01 AC 113 ms
41,256 KB
testcase_02 AC 113 ms
41,344 KB
testcase_03 AC 113 ms
41,196 KB
testcase_04 AC 116 ms
41,096 KB
testcase_05 AC 118 ms
44,636 KB
testcase_06 AC 113 ms
41,264 KB
testcase_07 AC 114 ms
41,216 KB
testcase_08 AC 106 ms
40,904 KB
testcase_09 AC 101 ms
39,996 KB
testcase_10 AC 110 ms
41,100 KB
testcase_11 AC 112 ms
40,996 KB
testcase_12 AC 113 ms
41,400 KB
testcase_13 AC 103 ms
40,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class slove{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		String out;
		StringBuffer sb = new StringBuffer();
		for(int i = 0; i < N; i++){
			String S = stdIn.next();
			sb.append(S);
		}
		out = sb.toString();
		System.out.println(out);
	}
}
0