結果

問題 No.69 文字を自由に並び替え
ユーザー swdamdrswdamdr
提出日時 2017-01-24 11:51:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 2,654 ms
コンパイル使用メモリ 104,600 KB
実行使用メモリ 24,300 KB
最終ジャッジ日時 2023-08-20 23:34:05
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
19,076 KB
testcase_01 AC 51 ms
21,276 KB
testcase_02 AC 73 ms
22,136 KB
testcase_03 AC 74 ms
22,124 KB
testcase_04 AC 75 ms
24,164 KB
testcase_05 AC 74 ms
22,324 KB
testcase_06 AC 74 ms
24,240 KB
testcase_07 AC 75 ms
24,268 KB
testcase_08 AC 73 ms
20,212 KB
testcase_09 AC 74 ms
22,324 KB
testcase_10 AC 74 ms
22,232 KB
testcase_11 AC 75 ms
24,300 KB
testcase_12 AC 74 ms
22,232 KB
testcase_13 AC 75 ms
24,264 KB
testcase_14 AC 76 ms
24,172 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.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