結果

問題 No.69 文字を自由に並び替え
ユーザー FoltaFolta
提出日時 2019-05-27 17:43:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 284 ms / 5,000 ms
コード長 173 bytes
コンパイル時間 8,655 ms
コンパイル使用メモリ 427,780 KB
実行使用メモリ 58,132 KB
最終ジャッジ日時 2024-04-30 20:50:03
合計ジャッジ時間 13,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
57,980 KB
testcase_01 AC 284 ms
57,872 KB
testcase_02 AC 271 ms
58,044 KB
testcase_03 AC 274 ms
57,908 KB
testcase_04 AC 270 ms
58,028 KB
testcase_05 AC 273 ms
58,096 KB
testcase_06 AC 267 ms
57,960 KB
testcase_07 AC 270 ms
57,872 KB
testcase_08 AC 273 ms
58,016 KB
testcase_09 AC 270 ms
57,868 KB
testcase_10 AC 268 ms
57,836 KB
testcase_11 AC 268 ms
58,084 KB
testcase_12 AC 276 ms
57,980 KB
testcase_13 AC 266 ms
58,132 KB
testcase_14 AC 271 ms
57,968 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