結果

問題 No.597 concat
ユーザー denderaKawazudenderaKawazu
提出日時 2018-02-13 23:24:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-12-14 10:39:25
合計ジャッジ時間 4,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,224 KB
testcase_01 AC 122 ms
54,328 KB
testcase_02 AC 134 ms
54,128 KB
testcase_03 AC 137 ms
53,964 KB
testcase_04 AC 135 ms
54,120 KB
testcase_05 AC 119 ms
53,092 KB
testcase_06 AC 133 ms
54,128 KB
testcase_07 AC 135 ms
54,400 KB
testcase_08 AC 137 ms
53,908 KB
testcase_09 AC 133 ms
54,312 KB
testcase_10 AC 133 ms
54,272 KB
testcase_11 AC 134 ms
54,100 KB
testcase_12 AC 135 ms
53,804 KB
testcase_13 AC 131 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            int n = in.nextInt();
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < n; i++) sb.append(in.next());
            out.println(sb);
        }

    }
}

0