結果

問題 No.69 文字を自由に並び替え
ユーザー FoltaFolta
提出日時 2019-05-27 17:07:38
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 10,445 ms
コンパイル使用メモリ 429,556 KB
実行使用メモリ 58,004 KB
最終ジャッジ日時 2024-04-30 20:49:21
合計ジャッジ時間 16,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
57,640 KB
testcase_01 AC 326 ms
57,896 KB
testcase_02 AC 324 ms
57,840 KB
testcase_03 AC 324 ms
58,004 KB
testcase_04 WA -
testcase_05 AC 322 ms
57,904 KB
testcase_06 AC 323 ms
57,784 KB
testcase_07 AC 322 ms
57,912 KB
testcase_08 AC 324 ms
57,848 KB
testcase_09 AC 327 ms
57,776 KB
testcase_10 AC 324 ms
57,864 KB
testcase_11 AC 324 ms
57,964 KB
testcase_12 AC 326 ms
57,896 KB
testcase_13 AC 327 ms
57,796 KB
testcase_14 AC 330 ms
57,912 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