結果

問題 No.205 マージして辞書順最小
ユーザー mbanmban
提出日時 2017-06-26 19:33:59
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,170 bytes
コンパイル時間 1,027 ms
コンパイル使用メモリ 109,888 KB
実行使用メモリ 30,548 KB
最終ジャッジ日時 2024-10-04 09:43:51
合計ジャッジ時間 3,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
21,684 KB
testcase_01 AC 23 ms
23,660 KB
testcase_02 RE -
testcase_03 AC 74 ms
24,528 KB
testcase_04 AC 63 ms
24,300 KB
testcase_05 AC 63 ms
24,368 KB
testcase_06 RE -
testcase_07 AC 148 ms
28,636 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 113 ms
30,420 KB
testcase_11 AC 169 ms
28,640 KB
testcase_12 AC 144 ms
30,548 KB
testcase_13 AC 107 ms
28,644 KB
testcase_14 RE -
testcase_15 AC 23 ms
23,656 KB
testcase_16 AC 28 ms
26,560 KB
testcase_17 AC 28 ms
24,364 KB
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main()
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N;
    private string[] S;
    private int Length = 0;

    private void Scan()
    {
        N = int.Parse(Console.ReadLine());
        S = new string[N];
        for (int i = 0; i < N; i++)
        {
            string line = Console.ReadLine();
            Length += line.Length;
            S[i] = line + (char)255;
        }
    }

    public void Solve()
    {
        Scan();
        string ans = "";
        for (int i = 0; i < Length; i++)
        {
            int index = 0;
            string min = S[0];
            for (int j = 1; j < N; j++)
            {
                if (min.CompareTo(S[j]) > 0)
                {
                    min = S[j];
                    index = j;
                }
            }
            ans += min[0];
            S[index] = min.Substring(1);
        }
        Console.WriteLine(ans);
    }
}
0