結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,544 KB
testcase_01 AC 25 ms
24,292 KB
testcase_02 AC 35 ms
27,624 KB
testcase_03 AC 31 ms
27,228 KB
testcase_04 AC 31 ms
27,680 KB
testcase_05 AC 30 ms
25,320 KB
testcase_06 AC 30 ms
25,308 KB
testcase_07 AC 31 ms
27,368 KB
testcase_08 AC 30 ms
23,604 KB
testcase_09 AC 30 ms
25,436 KB
testcase_10 AC 30 ms
27,420 KB
testcase_11 AC 32 ms
25,524 KB
testcase_12 AC 30 ms
25,520 KB
testcase_13 AC 31 ms
25,632 KB
testcase_14 AC 31 ms
27,352 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