結果

問題 No.597 concat
ユーザー GodNegotoGodNegoto
提出日時 2019-11-28 15:06:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 3,276 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-11-18 07:34:59
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,972 KB
testcase_01 AC 116 ms
54,020 KB
testcase_02 AC 119 ms
54,084 KB
testcase_03 AC 116 ms
54,044 KB
testcase_04 AC 110 ms
52,948 KB
testcase_05 AC 123 ms
53,868 KB
testcase_06 AC 121 ms
54,044 KB
testcase_07 AC 118 ms
54,164 KB
testcase_08 AC 109 ms
53,076 KB
testcase_09 AC 120 ms
54,120 KB
testcase_10 AC 119 ms
54,076 KB
testcase_11 AC 113 ms
53,460 KB
testcase_12 AC 108 ms
53,008 KB
testcase_13 AC 115 ms
52,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		int N = sc.nextInt();
		for(int i=0; i < N; i++) {
			sb.append(sc.next());
		}
		System.out.println(sb);
	}
}
0