結果

問題 No.69 文字を自由に並び替え
ユーザー da_louisda_louis
提出日時 2020-02-12 00:10:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 334 ms / 5,000 ms
コード長 217 bytes
コンパイル時間 11,498 ms
コンパイル使用メモリ 437,068 KB
実行使用メモリ 60,212 KB
最終ジャッジ日時 2024-10-01 12:59:30
合計ジャッジ時間 17,650 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
59,908 KB
testcase_01 AC 331 ms
59,780 KB
testcase_02 AC 326 ms
60,044 KB
testcase_03 AC 327 ms
59,988 KB
testcase_04 AC 328 ms
60,020 KB
testcase_05 AC 329 ms
60,084 KB
testcase_06 AC 328 ms
60,012 KB
testcase_07 AC 328 ms
60,008 KB
testcase_08 AC 331 ms
60,028 KB
testcase_09 AC 330 ms
60,212 KB
testcase_10 AC 327 ms
60,028 KB
testcase_11 AC 329 ms
60,168 KB
testcase_12 AC 330 ms
60,016 KB
testcase_13 AC 324 ms
59,992 KB
testcase_14 AC 334 ms
59,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p35()
}

fun p35() {
    val (a, b) = (1..2).map { readLine()!! }

    val answer = if (a.toCharArray().sorted() == b.toCharArray().sorted()) "YES" else "NO"

    println(answer)
}
0