結果

問題 No.69 文字を自由に並び替え
ユーザー うわばみうわばみ
提出日時 2020-04-29 16:59:31
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 103,168 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-05-06 17:31:09
合計ジャッジ時間 1,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,152 KB
testcase_01 WA -
testcase_02 AC 24 ms
17,408 KB
testcase_03 AC 24 ms
17,536 KB
testcase_04 WA -
testcase_05 AC 23 ms
17,536 KB
testcase_06 AC 23 ms
17,664 KB
testcase_07 AC 23 ms
17,664 KB
testcase_08 AC 23 ms
17,536 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 23 ms
17,664 KB
testcase_12 AC 23 ms
17,536 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program
{
    static void Main()
    {
        string s0 = Console.ReadLine();
        string s1 = Console.ReadLine();
        Array.Sort(s0.ToCharArray());
        Array.Sort(s1.ToCharArray());
        if(s0 == s1)
        {
            Console.WriteLine($"YES");
        }
        else
        {
            Console.WriteLine($"YES");
        }
    }
}
0