結果
問題 | 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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
26,524 KB |
testcase_01 | AC | 25 ms
24,356 KB |
testcase_02 | AC | 31 ms
25,252 KB |
testcase_03 | AC | 31 ms
25,184 KB |
testcase_04 | AC | 30 ms
25,308 KB |
testcase_05 | AC | 31 ms
25,316 KB |
testcase_06 | AC | 32 ms
25,692 KB |
testcase_07 | AC | 31 ms
27,356 KB |
testcase_08 | AC | 30 ms
25,248 KB |
testcase_09 | AC | 30 ms
25,248 KB |
testcase_10 | AC | 32 ms
27,484 KB |
testcase_11 | AC | 31 ms
27,228 KB |
testcase_12 | AC | 31 ms
27,360 KB |
testcase_13 | AC | 31 ms
25,268 KB |
testcase_14 | AC | 31 ms
25,384 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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); } }