結果

問題 No.597 concat
ユーザー Kaz_nlKaz_nl
提出日時 2017-11-26 20:43:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 3,385 ms
コンパイル使用メモリ 102,680 KB
実行使用メモリ 22,680 KB
最終ジャッジ日時 2023-08-18 07:59:29
合計ジャッジ時間 4,996 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
18,596 KB
testcase_01 AC 55 ms
18,440 KB
testcase_02 AC 56 ms
22,596 KB
testcase_03 AC 55 ms
22,528 KB
testcase_04 AC 54 ms
20,556 KB
testcase_05 AC 58 ms
20,800 KB
testcase_06 AC 55 ms
18,692 KB
testcase_07 AC 54 ms
20,632 KB
testcase_08 AC 54 ms
22,580 KB
testcase_09 AC 54 ms
20,556 KB
testcase_10 AC 56 ms
22,680 KB
testcase_11 AC 56 ms
20,692 KB
testcase_12 AC 54 ms
20,660 KB
testcase_13 AC 55 ms
20,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program
{
    static void Main()
    {
        int N = int.Parse(Console.ReadLine());
        string s = "";
        for (int i = 0; i < N; i++)
        {
            s += Console.ReadLine();
        }
        Console.WriteLine(s);
    }
}
0