結果

問題 No.1026 OGAWA's New Keyboard
ユーザー curryudon08curryudon08
提出日時 2020-07-10 18:18:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 741 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 108,296 KB
実行使用メモリ 38,344 KB
最終ジャッジ日時 2024-10-11 02:43:19
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,820 KB
testcase_01 AC 24 ms
23,860 KB
testcase_02 AC 24 ms
23,916 KB
testcase_03 AC 24 ms
24,132 KB
testcase_04 AC 152 ms
38,344 KB
testcase_05 AC 29 ms
24,228 KB
testcase_06 AC 31 ms
26,084 KB
testcase_07 AC 104 ms
36,936 KB
testcase_08 AC 27 ms
24,064 KB
testcase_09 AC 26 ms
21,948 KB
testcase_10 AC 26 ms
23,912 KB
testcase_11 AC 26 ms
23,660 KB
testcase_12 AC 25 ms
23,916 KB
testcase_13 AC 24 ms
23,912 KB
testcase_14 AC 25 ms
24,004 KB
testcase_15 AC 25 ms
23,656 KB
testcase_16 AC 25 ms
25,828 KB
testcase_17 AC 55 ms
31,316 KB
testcase_18 AC 25 ms
23,912 KB
testcase_19 AC 52 ms
31,584 KB
testcase_20 AC 26 ms
25,828 KB
testcase_21 AC 25 ms
23,788 KB
testcase_22 AC 25 ms
23,860 KB
testcase_23 AC 26 ms
23,876 KB
testcase_24 AC 88 ms
34,380 KB
testcase_25 AC 26 ms
23,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

namespace _1026
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = long.Parse(Console.ReadLine());

            var head = new List<string>();
            var tail = new List<string>();

            for(var i = 0; i < n; i++){
                var _ = Console.ReadLine().Split();
                var t = int.Parse(_[0]);
                var s = _[1];

                if(t == 0){
                    tail.Add(s);
                }else{
                    head.Add(s);
                }
            }

            head.Reverse();
            var o = string.Join("",head) + string.Join("",tail);

            Console.WriteLine(o);
        }
    }
}
0