結果

問題 No.597 concat
ユーザー FfalconokeFfalconoke
提出日時 2017-12-08 18:12:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 3,591 ms
コンパイル使用メモリ 75,128 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-05-07 05:39:34
合計ジャッジ時間 5,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,668 KB
testcase_01 AC 117 ms
41,648 KB
testcase_02 AC 110 ms
41,480 KB
testcase_03 AC 112 ms
41,592 KB
testcase_04 AC 119 ms
41,300 KB
testcase_05 AC 118 ms
41,344 KB
testcase_06 AC 123 ms
41,648 KB
testcase_07 AC 124 ms
41,268 KB
testcase_08 AC 128 ms
41,416 KB
testcase_09 AC 116 ms
41,508 KB
testcase_10 AC 115 ms
41,588 KB
testcase_11 AC 106 ms
41,592 KB
testcase_12 AC 119 ms
41,864 KB
testcase_13 AC 121 ms
41,648 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