結果

問題 No.1026 OGAWA's New Keyboard
ユーザー bluemeganebluemegane
提出日時 2020-09-08 15:02:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 582 bytes
コンパイル時間 1,048 ms
コンパイル使用メモリ 109,320 KB
実行使用メモリ 31,192 KB
最終ジャッジ日時 2024-05-07 04:38:10
合計ジャッジ時間 3,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,960 KB
testcase_01 AC 24 ms
24,100 KB
testcase_02 AC 25 ms
24,172 KB
testcase_03 AC 26 ms
24,168 KB
testcase_04 AC 114 ms
31,192 KB
testcase_05 AC 27 ms
26,024 KB
testcase_06 AC 28 ms
24,040 KB
testcase_07 AC 76 ms
26,080 KB
testcase_08 AC 26 ms
23,784 KB
testcase_09 AC 25 ms
25,904 KB
testcase_10 AC 25 ms
23,972 KB
testcase_11 AC 25 ms
23,900 KB
testcase_12 AC 24 ms
25,896 KB
testcase_13 AC 24 ms
24,100 KB
testcase_14 AC 24 ms
23,984 KB
testcase_15 AC 24 ms
23,984 KB
testcase_16 AC 24 ms
23,912 KB
testcase_17 AC 48 ms
28,064 KB
testcase_18 AC 25 ms
23,772 KB
testcase_19 AC 45 ms
28,200 KB
testcase_20 AC 26 ms
25,900 KB
testcase_21 AC 24 ms
24,108 KB
testcase_22 AC 25 ms
25,760 KB
testcase_23 AC 26 ms
25,952 KB
testcase_24 AC 69 ms
28,100 KB
testcase_25 AC 26 ms
26,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Text;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var sb0 = new StringBuilder();
        var sb1 = new StringBuilder();
        for (int i = 0; i < n; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            if (line[0] == "0") sb0.Append(line[1]);
            else sb1.Append(line[1]);
        }
        var s1 = sb1.ToString().ToCharArray();
        Array.Reverse(s1);
        Console.Write(new string(s1));
        Console.WriteLine(sb0);
    }
}
0