結果

問題 No.69 文字を自由に並び替え
ユーザー FoltaFolta
提出日時 2019-05-27 17:07:38
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 10,058 ms
コンパイル使用メモリ 423,276 KB
実行使用メモリ 57,984 KB
最終ジャッジ日時 2024-11-20 18:39:56
合計ジャッジ時間 15,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
54,040 KB
testcase_01 AC 322 ms
53,840 KB
testcase_02 AC 319 ms
53,764 KB
testcase_03 AC 316 ms
53,688 KB
testcase_04 WA -
testcase_05 AC 326 ms
53,808 KB
testcase_06 AC 328 ms
53,804 KB
testcase_07 AC 326 ms
54,208 KB
testcase_08 AC 323 ms
53,856 KB
testcase_09 AC 319 ms
53,940 KB
testcase_10 AC 321 ms
53,856 KB
testcase_11 AC 326 ms
54,096 KB
testcase_12 AC 321 ms
54,184 KB
testcase_13 AC 328 ms
53,808 KB
testcase_14 AC 327 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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