結果

問題 No.597 concat
ユーザー fabled2468fabled2468
提出日時 2018-09-28 23:37:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 3,615 ms
コンパイル使用メモリ 76,432 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-10-12 07:25:12
合計ジャッジ時間 6,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,184 KB
testcase_01 AC 132 ms
54,208 KB
testcase_02 AC 135 ms
54,076 KB
testcase_03 AC 136 ms
54,108 KB
testcase_04 AC 134 ms
53,852 KB
testcase_05 AC 134 ms
54,016 KB
testcase_06 AC 134 ms
54,252 KB
testcase_07 AC 133 ms
53,972 KB
testcase_08 AC 133 ms
54,120 KB
testcase_09 AC 134 ms
53,992 KB
testcase_10 AC 135 ms
54,160 KB
testcase_11 AC 133 ms
54,168 KB
testcase_12 AC 137 ms
53,952 KB
testcase_13 AC 133 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class No597_Concat {
    public static void main(String[] args) {

        Scanner scan = new Scanner(System.in);
        int count = scan.nextInt();
        ArrayList list = new ArrayList<>();
        for (int i = 0; i < count; i++) {
            list.add(scan.next());
        }
        scan.close();

        StringBuilder result = new StringBuilder();

        for (int i = 0; i < count; i++) {
            result.append(list.get(i));
        }

        System.out.println(result.toString());
    }
}
0