結果

問題 No.597 concat
ユーザー CroweaCrowea
提出日時 2019-01-22 19:28:21
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 1,169 ms
コンパイル使用メモリ 63,216 KB
実行使用メモリ 22,644 KB
最終ジャッジ日時 2023-10-14 09:15:59
合計ジャッジ時間 2,777 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
22,644 KB
testcase_01 AC 47 ms
20,696 KB
testcase_02 AC 47 ms
20,484 KB
testcase_03 AC 48 ms
20,608 KB
testcase_04 AC 47 ms
20,620 KB
testcase_05 AC 46 ms
22,636 KB
testcase_06 AC 47 ms
20,472 KB
testcase_07 AC 46 ms
20,604 KB
testcase_08 AC 48 ms
20,800 KB
testcase_09 AC 54 ms
18,556 KB
testcase_10 AC 52 ms
20,672 KB
testcase_11 AC 50 ms
20,660 KB
testcase_12 AC 46 ms
18,576 KB
testcase_13 AC 45 ms
22,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Text;

class Program
{
    static void Main(string[] args)
    {
        var N = int.Parse(Console.ReadLine());
        var sb = new StringBuilder(N);

        for (int i = 0; i < N; i++)
            sb.Append(Console.ReadLine());

        Console.WriteLine(sb.ToString());
    }
}

0