結果

問題 No.597 concat
ユーザー denderaKawazudenderaKawazu
提出日時 2018-02-13 23:24:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 2,004 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-05-08 08:14:29
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,348 KB
testcase_01 AC 119 ms
40,384 KB
testcase_02 AC 127 ms
41,352 KB
testcase_03 AC 127 ms
41,184 KB
testcase_04 AC 124 ms
41,372 KB
testcase_05 AC 126 ms
41,132 KB
testcase_06 AC 113 ms
40,064 KB
testcase_07 AC 113 ms
40,200 KB
testcase_08 AC 122 ms
41,416 KB
testcase_09 AC 123 ms
41,436 KB
testcase_10 AC 122 ms
41,444 KB
testcase_11 AC 124 ms
41,448 KB
testcase_12 AC 120 ms
41,260 KB
testcase_13 AC 116 ms
41,236 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