結果

問題 No.69 文字を自由に並び替え
ユーザー FoltaFolta
提出日時 2019-05-27 17:43:26
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 359 ms / 5,000 ms
コード長 173 bytes
コンパイル時間 11,614 ms
コンパイル使用メモリ 427,084 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-11-20 18:40:43
合計ジャッジ時間 16,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
54,096 KB
testcase_01 AC 327 ms
53,836 KB
testcase_02 AC 334 ms
54,124 KB
testcase_03 AC 329 ms
54,068 KB
testcase_04 AC 329 ms
54,064 KB
testcase_05 AC 329 ms
53,748 KB
testcase_06 AC 332 ms
54,124 KB
testcase_07 AC 329 ms
53,732 KB
testcase_08 AC 330 ms
54,096 KB
testcase_09 AC 334 ms
53,920 KB
testcase_10 AC 331 ms
53,856 KB
testcase_11 AC 331 ms
53,732 KB
testcase_12 AC 327 ms
53,828 KB
testcase_13 AC 328 ms
53,920 KB
testcase_14 AC 331 ms
53,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val a = readLine()!!.toCharArray().toList()
    val b = readLine()!!.toCharArray().toList()
    println(if (a.sorted().equals(b.sorted())) "YES" else "NO")
}
0