結果

問題 No.69 文字を自由に並び替え
ユーザー swdamdr
提出日時 2017-01-24 11:51:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 110,684 KB
実行使用メモリ 27,484 KB
最終ジャッジ日時 2024-12-14 06:27:59
合計ジャッジ時間 2,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

class Program
{
    static void Main(string[] args)
    {
        string output;
        string a = Console.ReadLine();
        string b = Console.ReadLine();

        string[] arr1 = new string[a.Length];
        string[] arr2 = new string[a.Length];

        for (int i = 0; i < a.Length; i++)
        {
            arr1[i] = a[i].ToString();
            arr2[i] = b[i].ToString();
        }

        Array.Sort(arr1);
        Array.Sort(arr2);

        if (arr1.SequenceEqual(arr2))
        {
            output = "YES";
        }
        else
        {
            output = "NO";
        }

        Console.WriteLine(output);
    }
}
0